blob: 1702dad34ca0c0a5cd15fe71b5f389feca22fadc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
error[E0081]: discriminant value `1` already exists
--> $DIR/issue-15524.rs:5:9
|
LL | A = 1,
| - first use of `1`
LL | B = 1,
| ^ enum already has `1`
error[E0081]: discriminant value `1` already exists
--> $DIR/issue-15524.rs:8:5
|
LL | A = 1,
| - first use of `1`
...
LL | D,
| ^ enum already has `1`
error[E0081]: discriminant value `1` already exists
--> $DIR/issue-15524.rs:11:9
|
LL | A = 1,
| - first use of `1`
...
LL | E = N,
| ^ enum already has `1`
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0081`.
|