mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
15 lines
329 B
Text
15 lines
329 B
Text
error: enum with no variants
|
|
--> $DIR/empty_enum.rs:7:1
|
|
|
|
|
7 | enum Empty {}
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D empty-enum` implied by `-D warnings`
|
|
help: consider using the uninhabited type `!` or a wrapper around it
|
|
--> $DIR/empty_enum.rs:7:1
|
|
|
|
|
7 | enum Empty {}
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|