blob: a783a348be001085ef0bf9fc9d861f3e977bb501 [file] [log] [blame]
// Checks what happens when `public` is used instead of the correct, `pub`
//@ run-rustfix
public 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() { }