rust/tests/ui/consts/const-eval/shift_overflow.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
345 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
|
2020-06-02 02:59:11 -05:00
LL | X = 1 << ((u32::MAX as u64) + 1),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ attempt to shift left by `4294967296_u64`, which would overflow
2018-06-27 06:47:19 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0080`.