1error[E0081]: discriminant value `0` already exists
2  --> $DIR/tag-variant-disr-dup.rs:8:13
3   |
4LL |     Black = 0x000000,
5   |             -------- first use of `0`
6LL |     White = 0x000000,
7   |             ^^^^^^^^ enum already has `0`
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0081`.
12