blob: 5c38d7c42f6b2797b2f1cf1c2532facea982a4f7 [file] [log] [blame]
// build-fail
fn main() {
[1][0u64 as usize];
[1][1.5 as usize]; //~ ERROR operation will panic
[1][1u64 as usize]; //~ ERROR operation will panic
}