mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:57:24 +00:00
10 lines
166 B
Plaintext
10 lines
166 B
Plaintext
// run-rustfix
|
|
mod test {
|
|
pub const X: i32 = 123;
|
|
//~^ ERROR expected one of `!` or `::`, found keyword `const`
|
|
}
|
|
|
|
fn main() {
|
|
println!("{}", test::X);
|
|
}
|