rust/tests/ui/consts/const-prop-ice.rs
2023-01-11 09:32:08 +00:00

6 lines
103 B
Rust

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