mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
217 B
Rust
12 lines
217 B
Rust
// run-rustfix
|
|
#![allow(dead_code, non_upper_case_globals)]
|
|
fn main() {
|
|
let n: usize = 0;
|
|
|
|
struct Foo;
|
|
impl Foo {
|
|
const N: usize = n;
|
|
//~^ ERROR attempt to use a non-constant value
|
|
}
|
|
}
|