mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
463 B
Plaintext
18 lines
463 B
Plaintext
error: variant `Variant1` is never constructed
|
|
--> $DIR/unused-variant.rs:5:5
|
|
|
|
|
LL | enum Enum {
|
|
| ---- variant in this enum
|
|
LL | Variant1,
|
|
| ^^^^^^^^
|
|
|
|
|
= note: `Enum` has a derived impl for the trait `Clone`, but this is intentionally ignored during dead code analysis
|
|
note: the lint level is defined here
|
|
--> $DIR/unused-variant.rs:1:9
|
|
|
|
|
LL | #![deny(dead_code)]
|
|
| ^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|