2018-05-20 06:43:11 +02:00
|
|
|
// Issue #50636
|
2020-07-02 14:32:12 +09:00
|
|
|
// run-rustfix
|
2018-05-20 06:43:11 +02:00
|
|
|
|
2020-07-02 14:32:12 +09:00
|
|
|
pub struct S {
|
|
|
|
pub foo: u32 //~ expected `,`, or `}`, found keyword `pub`
|
2018-05-20 06:43:11 +02:00
|
|
|
// ~^ HELP try adding a comma: ','
|
2020-07-02 14:32:12 +09:00
|
|
|
pub bar: u32
|
2018-05-20 06:43:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2020-07-02 14:32:12 +09:00
|
|
|
let _ = S { foo: 5, bar: 6 };
|
2018-05-20 06:43:11 +02:00
|
|
|
}
|