mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
761 B
Plaintext
20 lines
761 B
Plaintext
error[E0532]: expected tuple struct or tuple variant, found unit variant `FarmAnimal::Cow`
|
|
--> $DIR/issue-84700.rs:15:9
|
|
|
|
|
LL | Cow,
|
|
| --- `FarmAnimal::Cow` defined here
|
|
...
|
|
LL | FarmAnimal::Cow(_) => "moo".to_string(),
|
|
| ^^^^^^^^^^^^^^^^^^ help: use this syntax instead: `FarmAnimal::Cow`
|
|
|
|
error[E0164]: expected tuple struct or tuple variant, found struct variant `FarmAnimal::Chicken`
|
|
--> $DIR/issue-84700.rs:17:9
|
|
|
|
|
LL | FarmAnimal::Chicken(_) => "cluck, cluck!".to_string(),
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ not a tuple struct or tuple variant
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
Some errors have detailed explanations: E0164, E0532.
|
|
For more information about an error, try `rustc --explain E0164`.
|