2018-10-20 15:36:17 -05:00
|
|
|
error: expected identifier, found `0`
|
2019-01-06 09:33:05 -06:00
|
|
|
--> $DIR/struct-field-numeric-shorthand.rs:4: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
|
|
|
|
|
2019-01-06 09:33:05 -06:00
|
|
|
error[E0063]: missing fields `0`, `1`, `2` in initializer of `Rgb`
|
|
|
|
--> $DIR/struct-field-numeric-shorthand.rs:4:13
|
|
|
|
|
|
|
|
|
LL | let _ = Rgb { 0, 1, 2 }; //~ ERROR expected identifier, found `0`
|
|
|
|
| ^^^ missing `0`, `1`, `2`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-10-20 15:36:17 -05:00
|
|
|
|
2019-01-06 09:33:05 -06:00
|
|
|
For more information about this error, try `rustc --explain E0063`.
|