mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
290 B
Plaintext
14 lines
290 B
Plaintext
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 {}
|
|
| ^^^^^^^^^^^^^
|
|
|