38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
16 lines
347 B
Plaintext
16 lines
347 B
Plaintext
error: enum with no variants
|
|
--> $DIR/empty_enum.rs:4:1
|
|
|
|
|
LL | enum Empty {}
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::empty-enum` implied by `-D warnings`
|
|
help: consider using the uninhabited type `!` or a wrapper around it
|
|
--> $DIR/empty_enum.rs:4:1
|
|
|
|
|
LL | enum Empty {}
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|