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