blob: 67b0d75d787cdaafb47bc5d68ed660977c2571c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0081]: discriminant value `0` already exists
--> $DIR/enum-discrim-autosizing.rs:8:12
|
LL | Au64 = 0,
| - first use of `0`
LL | Bu64 = 0x8000_0000_0000_0000 //~ERROR already exists
| ^^^^^^^^^^^^^^^^^^^^^ enum already has `0`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0081`.
|