mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
557 B
Plaintext
19 lines
557 B
Plaintext
error: expected one of `)`, `,`, `@`, or `|`, found `[`
|
|
--> $DIR/pat-lt-bracket-7.rs:5:16
|
|
|
|
|
LL | for Thing(x[]) in foo {}
|
|
| ^
|
|
| |
|
|
| expected one of `)`, `,`, `@`, or `|`
|
|
| help: missing `,`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/pat-lt-bracket-7.rs:9:30
|
|
|
|
|
LL | const RECOVERY_WITNESS: () = 0;
|
|
| ^ expected `()`, found integer
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|