Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// 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
}