mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
06ff310cf9
Part 4: Finishing `check/mod.rs` file
14 lines
402 B
Plaintext
14 lines
402 B
Plaintext
error[E0731]: transparent enum needs exactly one variant, but has 2
|
|
--> $DIR/transparent-enum-too-many-variants.rs:4:1
|
|
|
|
|
LL | enum Foo {
|
|
| ^^^^^^^^ needs exactly one variant, but has 2
|
|
LL | A(u8), B(u8),
|
|
| - - too many variants in `Foo`
|
|
| |
|
|
| variant here
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0731`.
|