2025-05-28 10:29:08 +00:00
|
|
|
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),
|
2025-06-07 11:32:09 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ evaluation of `Foo::X::{constant#0}` failed here
|
2018-06-27 13:47:19 +02:00
|
|
|
|
2023-11-21 15:44:16 +00: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`.
|