rust/src/test/ui/parser/struct-field-numeric-shorthand.stderr

11 lines
315 B
Plaintext
Raw Normal View History

2018-10-20 15:36:17 -05:00
error: expected identifier, found `0`
2018-12-25 09:56:47 -06:00
--> $DIR/struct-field-numeric-shorthand.rs:6:19
2018-10-20 15:36:17 -05:00
|
LL | let _ = Rgb { 0, 1, 2 }; //~ ERROR expected identifier, found `0`
| --- ^ expected identifier
| |
| while parsing this struct
error: aborting due to previous error