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