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

21 lines
430 B
Plaintext
Raw Normal View History

error: missing comma
2019-05-31 15:50:04 -05:00
--> $DIR/recover-enum.rs:3:13
2018-10-20 15:36:17 -05:00
|
LL | Very
| ^ help: missing comma
2018-10-20 15:36:17 -05:00
error: missing comma
2019-05-31 15:50:04 -05:00
--> $DIR/recover-enum.rs:5:19
|
LL | Bad(usize)
| ^ help: missing comma
error: missing comma
2019-05-31 15:50:04 -05:00
--> $DIR/recover-enum.rs:7:27
|
LL | Stuff { a: usize }
| ^ help: missing comma
error: aborting due to 3 previous errors
2018-10-20 15:36:17 -05:00