]> git.lizzy.rs Git - rust.git/blob - tests/ui/structs/struct-missing-comma.rs
internally change regions to be covariant
[rust.git] / tests / ui / structs / struct-missing-comma.rs
1 // Issue #50636
2 // run-rustfix
3
4 pub struct S {
5     pub foo: u32 //~ expected `,`, or `}`, found keyword `pub`
6     //     ~^ HELP try adding a comma: ','
7     pub bar: u32
8 }
9
10 fn main() {
11     let _ = S { foo: 5, bar: 6 };
12 }