blob: 9507477fcd3eff2a66770edd1ae62d56841fbb4f [file] [log] [blame]
// Checks what happens when `public` is used instead of the correct, `pub`
//@ edition:2018
//@ run-rustfix
public struct X;
//~^ ERROR expected one of `!` or `::`, found keyword `struct`
//~^^ HELP write `pub` instead of `public` to make the item public
fn main() {}