blob: 8a6d2a89c7063cf91dbd439ca5d52ee17350d66c [file] [log] [blame]
error: attempt to shift left with overflow
--> $DIR/lint-exceeding-bitshifts2.rs:7:15
|
LL | let n = 1u8 << (4+4);
| ^^^^^^^^^^^^
|
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
--> $DIR/lint-exceeding-bitshifts2.rs:16:15
|
LL | let n = 1_usize << BITS;
| ^^^^^^^^^^^^^^^
error: aborting due to 3 previous errors