rust/src/test/ui/consts/const-eval/shift_overflow.stderr

10 lines
333 B
Plaintext
Raw Normal View History

error[E0080]: evaluation of constant value failed
2018-12-25 09:56:47 -06:00
--> $DIR/shift_overflow.rs:3:9
2018-06-27 06:47:19 -05:00
|
2019-03-09 06:03:44 -06:00
LL | X = 1 << ((u32::max_value() as u64) + 1),
2018-06-27 06:47:19 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ attempt to shift left with overflow
error: aborting due to previous error
For more information about this error, try `rustc --explain E0080`.