mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
c2c73189c8
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
12 lines
415 B
Text
12 lines
415 B
Text
error: enum with no variants
|
|
--> $DIR/empty_enum.rs:5:1
|
|
|
|
|
LL | enum Empty {}
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
= help: consider using the uninhabited type `!` (never type) or a wrapper around it to introduce a type which can't be instantiated
|
|
= note: `-D clippy::empty-enum` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::empty_enum)]`
|
|
|
|
error: aborting due to 1 previous error
|
|
|