rust/tests/ui/parser/issues/error-pattern-issue-50571.stderr
xizheyin ed88af2163
Recover and suggest use ; to construct array type
Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn>
2025-07-15 12:00:46 +08:00

29 lines
808 B
Plaintext

error: expected `;` or `]`, found `,`
--> $DIR/error-pattern-issue-50571.rs:6:14
|
LL | fn foo([a, b]: [i32; 2]) {}
| ^ expected `;` or `]`
|
= note: you might have meant to write a slice or array type
help: you might have meant to use `;` as the separator
|
LL - fn foo([a, b]: [i32; 2]) {}
LL + fn foo([a; b]: [i32; 2]) {}
|
error[E0642]: patterns aren't allowed in methods without bodies
--> $DIR/error-pattern-issue-50571.rs:6:12
|
LL | fn foo([a, b]: [i32; 2]) {}
| ^^^^^^
|
help: give this argument a name or use an underscore to ignore it
|
LL - fn foo([a, b]: [i32; 2]) {}
LL + fn foo(_: [i32; 2]) {}
|
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0642`.