]> git.proxmox.com Git - rustc.git/blob - tests/ui/structs/struct-missing-comma.fixed
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / structs / struct-missing-comma.fixed
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 }