2021-01-02 03:58:50 -06:00
|
|
|
error[E0559]: variant `Enum::V1` has no field named `x`
|
|
|
|
--> $DIR/issue-80607.rs:7:16
|
|
|
|
|
|
|
|
|
LL | V1(i32),
|
2021-01-02 04:06:30 -06:00
|
|
|
| -- `Enum::V1` defined here
|
2021-01-02 03:58:50 -06:00
|
|
|
...
|
|
|
|
LL | Enum::V1 { x }
|
2021-09-01 22:20:46 -05:00
|
|
|
| ^ field does not exist
|
|
|
|
|
|
|
|
|
help: `Enum::V1` is a tuple variant, use the appropriate syntax
|
|
|
|
|
|
|
|
|
LL | Enum::V1(/* fields */)
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~
|
2021-01-02 03:58:50 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0559`.
|