]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/struct-field-numeric-shorthand.rs
914588f51e1e384bbd35f62a89ba546d6b78db14
[rust.git] / src / test / ui / parser / struct-field-numeric-shorthand.rs
1 struct Rgb(u8, u8, u8);
2
3 fn main() {
4     let _ = Rgb { 0, 1, 2 }; //~ ERROR expected identifier, found `0`
5                              //~| ERROR missing fields `0`, `1`, `2` in initializer of `Rgb`
6 }