rust/tests/ui/empty_enum.stderr
2017-10-03 12:07:24 +02:00

13 lines
290 B
Text

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 {}
| ^^^^^^^^^^^^^