mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
8 lines
204 B
Rust
8 lines
204 B
Rust
// run-rustfix
|
|
fn main() {
|
|
let foo = 42u32;
|
|
#[allow(unused_variables, non_snake_case)]
|
|
const FOO : u32 = foo;
|
|
//~^ ERROR attempt to use a non-constant value in a constant
|
|
}
|