blob: a116e621a95dfd13f5fdba2106aa5f135442910e (
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:15: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:18: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:21: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`.
|