about summary refs log tree commit diff
path: root/tests/ui/structs/struct-missing-comma.rs
blob: b9d8c9eb303440b028c2feb3ccd793b991c18b04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Issue #50636
//@ run-rustfix

pub struct S {
    pub foo: u32 //~ expected `,`, or `}`, found keyword `pub`
    //     ~^ HELP try adding a comma: ','
    pub bar: u32
}

fn main() {
    let _ = S { foo: 5, bar: 6 };
}