2020-07-02 14:32:12 +09:00
|
|
|
// Issue #50636
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ run-rustfix
|
2020-07-02 14:32:12 +09:00
|
|
|
|
|
|
|
|
pub struct S {
|
2025-04-05 19:19:56 +03:00
|
|
|
pub foo: u32, //~ ERROR expected `,`, or `}`, found keyword `pub`
|
2020-07-02 14:32:12 +09:00
|
|
|
// ~^ HELP try adding a comma: ','
|
|
|
|
|
pub bar: u32
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let _ = S { foo: 5, bar: 6 };
|
|
|
|
|
}
|