rust/src/test/ui/error-codes/E0081.stderr

12 lines
300 B
Plaintext
Raw Normal View History

2018-03-05 03:21:11 -06:00
error[E0081]: discriminant value `3` already exists
2018-02-07 21:35:35 -06:00
--> $DIR/E0081.rs:13:9
|
2018-02-22 18:42:32 -06:00
LL | P = 3,
2018-03-05 03:21:11 -06:00
| - first use of `3`
2018-02-22 18:42:32 -06:00
LL | X = 3,
2018-03-05 03:21:11 -06:00
| ^ enum already has `3`
2018-02-07 21:35:35 -06:00
error: aborting due to previous error
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0081"