about summary refs log tree commit diff
path: root/tests/ui/const_prop/const-prop-ice.rs
blob: 44c8af9ce8a2bb609984f31ef749d88be675672f (plain)
1
2
3
4
5
//@ build-fail

fn main() {
    [0; 3][3u64 as usize]; //~ ERROR this operation will panic at runtime
}