summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/public-instead-of-pub-1.fixed
blob: a4fa68ba5cc2f3c65f317f4826c1af261a03cc21 (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

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() { }