summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/issue-54348.rs
blob: 5c38d7c42f6b2797b2f1cf1c2532facea982a4f7 (plain)
1
2
3
4
5
6
7
// 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
}