mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 00:41:27 +00:00
12 lines
220 B
Plaintext
12 lines
220 B
Plaintext
//@ 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
|
|
}
|
|
}
|