summary refs log tree commit diff
path: root/src/test/ui/parser/struct-field-numeric-shorthand.rs
blob: 914588f51e1e384bbd35f62a89ba546d6b78db14 (plain)
1
2
3
4
5
6
struct Rgb(u8, u8, u8);

fn main() {
    let _ = Rgb { 0, 1, 2 }; //~ ERROR expected identifier, found `0`
                             //~| ERROR missing fields `0`, `1`, `2` in initializer of `Rgb`
}