19 lines
519 B
Plaintext
19 lines
519 B
Plaintext
error: expected type, found `{`
|
|
--> $DIR/recover-enum2.rs:6:18
|
|
|
|
|
LL | Var3 {
|
|
| ---- while parsing this struct
|
|
LL | abc: {},
|
|
| ^ expected type
|
|
|
|
error: expected one of `!`, `(`, `)`, `+`, `,`, `::`, or `<`, found `{`
|
|
--> $DIR/recover-enum2.rs:25:22
|
|
|
|
|
LL | enum Test4 {
|
|
| ----- while parsing this enum
|
|
LL | Nope(i32 {})
|
|
| ^ expected one of 7 possible tokens
|
|
|
|
error: aborting due to 2 previous errors
|
|
|