rust/tests/ui/const_prop/const-prop-ice.rs
2024-02-16 20:02:50 +00:00

6 lines
104 B
Rust

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