rust/tests/ui/const_prop/const-prop-ice.rs

6 lines
104 B
Rust

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