blob: 14f620f41e8cdc9dca290d28076bb24b9babc85f [file] [log] [blame]
// run-rustfix
mod test {
pub const X: i32 = 123;
//~^ ERROR expected one of `!` or `::`, found keyword `const`
}
fn main() {
println!("{}", test::X);
}