2022-05-27 08:42:15 -05:00
|
|
|
error[E0081]: discriminant value `0` assigned more than once
|
|
|
|
--> $DIR/enum-discrim-autosizing.rs:6:1
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2022-07-07 20:50:10 -05:00
|
|
|
LL | enum Eu64 {
|
|
|
|
| ^^^^^^^^^
|
|
|
|
LL |
|
|
|
|
LL | Au64 = 0,
|
2022-08-07 10:24:25 -05:00
|
|
|
| - `0` assigned here
|
2022-07-07 20:50:10 -05:00
|
|
|
LL |
|
|
|
|
LL | Bu64 = 0x8000_0000_0000_0000
|
2022-08-07 10:24:25 -05:00
|
|
|
| --------------------- `0` (overflowed from `9223372036854775808`) assigned here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-08-22 18:19:38 -05:00
|
|
|
error: aborting due to previous error
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-08-22 18:19:38 -05:00
|
|
|
For more information about this error, try `rustc --explain E0081`.
|