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

10 lines
360 B
Plaintext
Raw Normal View History

error[E0080]: attempt to shift left by `4294967296_u64`, which would overflow
2018-12-25 08:56:47 -07:00
--> $DIR/shift_overflow.rs:3:9
2018-06-27 13:47:19 +02:00
|
2020-06-02 07:59:11 +00:00
LL | X = 1 << ((u32::MAX as u64) + 1),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ evaluation of `Foo::X::{constant#0}` failed here
2018-06-27 13:47:19 +02:00
error: aborting due to 1 previous error
2018-06-27 13:47:19 +02:00
For more information about this error, try `rustc --explain E0080`.