summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-9463.rs
blob: 9564e77c24b1cf64ad83b21c5a66165c6bd26097 (plain)
1
2
3
4
5
#![deny(arithmetic_overflow)]
fn main() {
    let _x = -1_i32 >> -1;
    let _y = 1u32 >> 10000000000000u32;
}