about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-9463.rs
blob: cfa6cdac6fa0553230cf275ac6518c877d9b2c94 (plain)
1
2
3
4
5
6
7
//@check-pass

fn main() {
    let _x = -1_i32 >> -1;
    #[expect(overflowing_literals)]
    let _y = 1u32 >> 10000000000000u32;
}