summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/public-instead-of-pub-1.rs
blob: 43565c9b1d25fd46d9934142f863b6a0702937ec (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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() { }