16 lines
349 B
Plaintext
16 lines
349 B
Plaintext
error: enum with no variants
|
|
--> $DIR/empty_enum.rs:13:1
|
|
|
|
|
13 | 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:13:1
|
|
|
|
|
13 | enum Empty {}
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|