rust/clippy_tests/examples/empty_enum.stderr
2017-06-19 22:11:12 +02:00

17 lines
376 B
Text

error: enum with no variants
--> 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
--> empty_enum.rs:7:1
|
7 | enum Empty {}
| ^^^^^^^^^^^^^
error: aborting due to previous error(s)
To learn more, run the command again with --verbose.