summaryrefslogtreecommitdiffstats
path: root/src/test/ui/enum/enum-discrim-autosizing.stderr
blob: eacea86d67e5523cd3c2e93b7caf1b0ed28d7d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0081]: discriminant value `0` assigned more than once
  --> $DIR/enum-discrim-autosizing.rs:6:1
   |
LL | enum Eu64 {
   | ^^^^^^^^^
LL |
LL |     Au64 = 0,
   |            - first assignment of `0`
LL |
LL |     Bu64 = 0x8000_0000_0000_0000
   |            --------------------- second assignment of `0` (overflowed from `9223372036854775808`)

error: aborting due to previous error

For more information about this error, try `rustc --explain E0081`.