]> git.lizzy.rs Git - rust.git/blob - src/test/ui/tag-variant-disr-dup.stderr
Merge commit 'fdb84cbfd25908df5683f8f62388f663d9260e39' into clippyup
[rust.git] / src / test / ui / tag-variant-disr-dup.stderr
1 error[E0081]: discriminant value `0` assigned more than once
2   --> $DIR/tag-variant-disr-dup.rs:3:1
3    |
4 LL | enum Color {
5    | ^^^^^^^^^^
6 ...
7 LL |     Black = 0x000000,
8    |             -------- first assignment of `0`
9 LL |     White = 0x000000,
10    |             -------- second assignment of `0`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0081`.