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

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