mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
19 lines
388 B
Text
19 lines
388 B
Text
error: enum with no variants
|
|
--> $DIR/empty_enum.rs:7:1
|
|
|
|
|
7 | enum Empty {}
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/empty_enum.rs:5:9
|
|
|
|
|
5 | #![deny(empty_enum)]
|
|
| ^^^^^^^^^^
|
|
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
|
|
|