mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
27 lines
833 B
Text
27 lines
833 B
Text
error: expected one of `)`, `,`, `@`, or `|`, found keyword `in`
|
|
--> $DIR/recover-for-loop-parens-around-head.rs:10:16
|
|
|
|
|
LL | for ( elem in vec ) {
|
|
| ^^ expected one of `)`, `,`, `@`, or `|`
|
|
|
|
error: unexpected parentheses surrounding `for` loop head
|
|
--> $DIR/recover-for-loop-parens-around-head.rs:10:9
|
|
|
|
|
LL | for ( elem in vec ) {
|
|
| ^ ^
|
|
|
|
|
help: remove parentheses in `for` loop
|
|
|
|
|
LL - for ( elem in vec ) {
|
|
LL + for elem in vec {
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/recover-for-loop-parens-around-head.rs:13:38
|
|
|
|
|
LL | const RECOVERY_WITNESS: () = 0;
|
|
| ^ expected `()`, found integer
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|