4 lines
74 B
Rust
4 lines
74 B
Rust
fn main () {
|
|
let foo = 42u32;
|
|
let _: [u8; foo]; //~ ERROR E0435
|
|
}
|