27 lines
1008 B
Plaintext
27 lines
1008 B
Plaintext
|
error: expected type, found `{`
|
||
|
--> $DIR/recover-enum2.rs:18:18
|
||
|
|
|
||
|
LL | abc: {}, //~ ERROR: expected type, found `{`
|
||
|
| ^
|
||
|
|
||
|
error: expected one of `!`, `(`, `)`, `+`, `,`, `::`, or `<`, found `{`
|
||
|
--> $DIR/recover-enum2.rs:37:22
|
||
|
|
|
||
|
LL | Nope(i32 {}) //~ ERROR: found `{`
|
||
|
| ^ expected one of 7 possible tokens here
|
||
|
|
||
|
error: expected one of `!`, `&&`, `&`, `(`, `)`, `*`, `+`, `,`, `::`, `<`, `?`, `[`, `_`, `crate`, `dyn`, `extern`, `fn`, `for`, `impl`, `pub`, `unsafe`, `}`, or lifetime, found `{`
|
||
|
--> $DIR/recover-enum2.rs:37:22
|
||
|
|
|
||
|
LL | Nope(i32 {}) //~ ERROR: found `{`
|
||
|
| ^ expected one of 23 possible tokens here
|
||
|
|
||
|
error: expected expression, found reserved identifier `_`
|
||
|
--> $DIR/recover-enum2.rs:42:22
|
||
|
|
|
||
|
LL | let bad_syntax = _; //~ ERROR: expected expression, found reserved identifier `_`
|
||
|
| ^ expected expression
|
||
|
|
||
|
error: aborting due to 4 previous errors
|
||
|
|