rust/src/test/ui/parser/pat-lt-bracket-7.stderr

22 lines
667 B
Plaintext
Raw Normal View History

2018-10-20 15:36:17 -05:00
error: expected one of `)`, `,`, or `@`, found `[`
--> $DIR/pat-lt-bracket-7.rs:2:16
2018-10-20 15:36:17 -05:00
|
2019-03-09 06:03:44 -06:00
LL | for thing(x[]) in foo {}
2018-10-20 15:36:17 -05:00
| ^ expected one of `)`, `,`, or `@` here
error[E0425]: cannot find value `foo` in this scope
--> $DIR/pat-lt-bracket-7.rs:2:23
|
LL | for thing(x[]) in foo {}
| ^^^ not found in this scope
error[E0531]: cannot find tuple struct/variant `thing` in this scope
--> $DIR/pat-lt-bracket-7.rs:2:9
|
LL | for thing(x[]) in foo {}
| ^^^^^ not found in this scope
error: aborting due to 3 previous errors
2018-10-20 15:36:17 -05:00
For more information about this error, try `rustc --explain E0425`.