blob: 9710d6de838d4e5c65e6ae258f1a2a6c6d79ee2f [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
}