2019-10-22 18:46:19 +00:00
|
|
|
error: expected one of `)`, `,`, `@`, or `|`, found keyword `in`
|
2019-07-24 08:26:32 +00:00
|
|
|
--> $DIR/recover-for-loop-parens-around-head.rs:10:16
|
|
|
|
|
|
|
|
|
LL | for ( elem in vec ) {
|
2019-10-28 18:08:53 +00:00
|
|
|
| ^^ expected one of `)`, `,`, `@`, or `|`
|
2019-07-24 08:26:32 +00:00
|
|
|
|
2021-10-17 10:04:01 +00:00
|
|
|
error: unexpected parentheses surrounding `for` loop head
|
2021-06-18 01:22:23 +00:00
|
|
|
--> $DIR/recover-for-loop-parens-around-head.rs:10:9
|
2019-07-24 08:26:32 +00:00
|
|
|
|
|
|
|
|
LL | for ( elem in vec ) {
|
2021-09-17 04:39:26 +00:00
|
|
|
| ^ ^
|
|
|
|
|
|
2021-10-17 10:04:01 +00:00
|
|
|
help: remove parentheses in `for` loop
|
2021-09-17 04:39:26 +00:00
|
|
|
|
|
|
|
|
LL - for ( elem in vec ) {
|
|
|
|
LL + for elem in vec {
|
2022-06-08 17:34:57 +00:00
|
|
|
|
|
2019-07-24 08:26:32 +00:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/recover-for-loop-parens-around-head.rs:13:38
|
|
|
|
|
|
|
|
|
LL | const RECOVERY_WITNESS: () = 0;
|
2019-11-15 17:37:01 +00:00
|
|
|
| ^ expected `()`, found integer
|
2019-07-24 08:26:32 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|