summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/public-instead-of-pub-3.fixed
blob: 14f620f41e8cdc9dca290d28076bb24b9babc85f (plain)
1
2
3
4
5
6
7
8
9
// run-rustfix
mod test {
    pub const X: i32 = 123;
    //~^ ERROR expected one of `!` or `::`, found keyword `const`
}

fn main() {
    println!("{}", test::X);
}