rust/tests/ui/empty_enum.stderr

16 lines
337 B
Plaintext
Raw Normal View History

error: enum with no variants
2017-08-01 10:54:21 -05:00
--> $DIR/empty_enum.rs:7:1
|
2017-02-08 07:58:07 -06:00
7 | enum Empty {}
| ^^^^^^^^^^^^^
|
= note: `-D clippy::empty-enum` implied by `-D warnings`
help: consider using the uninhabited type `!` or a wrapper around it
2017-08-01 10:54:21 -05:00
--> $DIR/empty_enum.rs:7:1
|
2017-02-08 07:58:07 -06:00
7 | enum Empty {}
| ^^^^^^^^^^^^^
2018-01-16 10:06:27 -06:00
error: aborting due to previous error