rust-clippy/tests/ui/empty_enum.stderr

14 lines
290 B
Text
Raw Normal View History

error: enum with no variants
2017-08-01 15:54:21 +00:00
--> $DIR/empty_enum.rs:7:1
|
2017-02-08 13:58:07 +00:00
7 | enum Empty {}
| ^^^^^^^^^^^^^
|
= note: `-D empty-enum` implied by `-D warnings`
help: consider using the uninhabited type `!` or a wrapper around it
2017-08-01 15:54:21 +00:00
--> $DIR/empty_enum.rs:7:1
|
2017-02-08 13:58:07 +00:00
7 | enum Empty {}
| ^^^^^^^^^^^^^