2018-10-20 15:36:17 -05:00
|
|
|
error: expected one of `)`, `,`, or `@`, found `[`
|
2019-01-06 09:33:05 -06:00
|
|
|
--> $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
|
|
|
|
|
2019-07-08 23:30:03 -05:00
|
|
|
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
|
|
|
|
2019-07-08 23:30:03 -05:00
|
|
|
For more information about this error, try `rustc --explain E0425`.
|