blob: dfbd14bb57589b0f703d54ae8118235c82f85028 [file] [log] [blame]
// Checks what happens when `public` is used instead of the correct, `pub`
//@ run-rustfix
pub enum Test {
//~^ ERROR expected one of `!` or `::`, found keyword `enum`
//~^^ HELP write `pub` instead of `public` to make the item public
A,
B,
}
fn main() { }