mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
7 lines
131 B
Rust
7 lines
131 B
Rust
//@ run-rustfix
|
|
fn main () {
|
|
#[allow(non_upper_case_globals)]
|
|
let foo: usize = 42;
|
|
let _: [u8; foo]; //~ ERROR E0435
|
|
}
|