about summary refs log tree commit diff
path: root/tests/ui/const_prop/const-prop-ice2.rs
blob: 1f28cb3106e18d65df16a1478b6bd2fa967131df (plain)
1
2
3
4
5
6
7
//@ 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
}