]> git.proxmox.com Git - rustc.git/blame - src/test/ui/structs/struct-missing-comma.fixed
Update unsuspicious file list
[rustc.git] / src / test / ui / structs / struct-missing-comma.fixed
CommitLineData
f035d41b
XL
1// Issue #50636
2// run-rustfix
3
4pub struct S {
5 pub foo: u32, //~ expected `,`, or `}`, found keyword `pub`
6 // ~^ HELP try adding a comma: ','
7 pub bar: u32
8}
9
10fn main() {
11 let _ = S { foo: 5, bar: 6 };
12}