rust/src/test/ui/parser/recover-enum2.stderr

15 lines
429 B
Plaintext
Raw Normal View History

2018-10-20 15:36:17 -05:00
error: expected type, found `{`
2018-12-25 09:56:47 -06:00
--> $DIR/recover-enum2.rs:8:18
2018-10-20 15:36:17 -05:00
|
LL | abc: {}, //~ ERROR: expected type, found `{`
| ^
error: expected one of `!`, `(`, `)`, `+`, `,`, `::`, or `<`, found `{`
2018-12-25 09:56:47 -06:00
--> $DIR/recover-enum2.rs:27:22
2018-10-20 15:36:17 -05:00
|
LL | Nope(i32 {}) //~ ERROR: found `{`
| ^ expected one of 7 possible tokens here
error: aborting due to 2 previous errors
2018-10-20 15:36:17 -05:00