blob: d533e394c06fb5cab82cfe774d70b7c7b5d76909 [file] [log] [blame]
// 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
}