2022-05-27 13:42:15 +00:00
|
|
|
error[E0081]: discriminant value `3` assigned more than once
|
|
|
|
--> $DIR/E0081.rs:1:1
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2022-07-08 01:50:10 +00:00
|
|
|
LL | enum Enum {
|
|
|
|
| ^^^^^^^^^
|
|
|
|
LL |
|
|
|
|
LL | P = 3,
|
|
|
|
| - first assignment of `3`
|
|
|
|
LL |
|
|
|
|
LL | X = 3,
|
|
|
|
| - second assignment of `3`
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2022-05-27 13:42:15 +00:00
|
|
|
error[E0081]: discriminant value `1` assigned more than once
|
|
|
|
--> $DIR/E0081.rs:11:1
|
2021-07-15 19:25:11 +00:00
|
|
|
|
|
2022-07-08 01:50:10 +00:00
|
|
|
LL | enum EnumOverflowRepr {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
LL |
|
|
|
|
LL | P = 257,
|
|
|
|
| --- first assignment of `1` (overflowed from `257`)
|
|
|
|
LL |
|
|
|
|
LL | X = 513,
|
|
|
|
| --- second assignment of `1` (overflowed from `513`)
|
2021-07-15 19:25:11 +00:00
|
|
|
|
2022-05-27 13:42:15 +00:00
|
|
|
error[E0081]: discriminant value `-1` assigned more than once
|
|
|
|
--> $DIR/E0081.rs:20:1
|
|
|
|
|
|
2022-07-08 01:50:10 +00:00
|
|
|
LL | enum NegDisEnum {
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
LL |
|
|
|
|
LL | First = -1,
|
|
|
|
| -- first assignment of `-1`
|
|
|
|
LL |
|
|
|
|
LL | Second = -2,
|
|
|
|
| ----------- assigned discriminant for `Last` was incremented from this discriminant
|
|
|
|
LL |
|
|
|
|
LL | Last,
|
|
|
|
| ---- second assignment of `-1`
|
2022-05-27 13:42:15 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0081`.
|