blob: 5db231cd5b0dff2bb5a688b298e3ab7ddb39be7a (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0080]: evaluation of constant value failed
--> $DIR/shift_overflow.rs:3:9
|
LL | X = 1 << ((u32::max_value() as u64) + 1),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ attempt to shift left with overflow
error: aborting due to previous error
For more information about this error, try `rustc --explain E0080`.
|