]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/crashes/ice-9463.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / crashes / ice-9463.rs
1 #![deny(arithmetic_overflow)]
2 fn main() {
3 let _x = -1_i32 >> -1;
4 let _y = 1u32 >> 10000000000000u32;
5 }