blob: 0adcde02acb7b51fd090bffda322e9e2cae2fdc0 [file] [log] [blame]
error: attempt to shift left with overflow
--> $DIR/lint-exceeding-bitshifts2.rs:7:15
|
LL | let n = 1u8 << (4+4); //~ ERROR: attempt to shift left with overflow
| ^^^^^^^^^^^^
|
note: lint level defined here
--> $DIR/lint-exceeding-bitshifts2.rs:1:9
|
LL | #![deny(exceeding_bitshifts, const_err)]
| ^^^^^^^^^^^^^^^^^^^
error: attempt to shift left with overflow
--> $DIR/lint-exceeding-bitshifts2.rs:15:15
|
LL | let n = 1_isize << BITS; //~ ERROR: attempt to shift left with overflow
| ^^^^^^^^^^^^^^^
error: attempt to shift left with overflow
--> $DIR/lint-exceeding-bitshifts2.rs:16:15
|
LL | let n = 1_usize << BITS; //~ ERROR: attempt to shift left with overflow
| ^^^^^^^^^^^^^^^
error: aborting due to 3 previous errors