blob: 24a77da896d9eafb5d665c56c039fb23e22785ad [file] [log] [blame]
// error-pattern:thread 'main' panicked at 'attempt to shift right with overflow'
// compile-flags: -C debug-assertions
#![warn(exceeding_bitshifts)]
fn main() {
let _x = -1_i32 >> 32;
}