mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 16:40:17 +00:00
8 lines
172 B
Rust
8 lines
172 B
Rust
//@ build-fail
|
|
|
|
fn main() {
|
|
enum Enum { One=1 }
|
|
let xs=[0;1 as usize];
|
|
println!("{}", xs[Enum::One as usize]); //~ ERROR this operation will panic at runtime
|
|
}
|