summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/empty_enum.stderr
blob: 7125e5f602b75ba962c400f6824b82e19b3d4bba (plain)
1
2
3
4
5
6
7
8
9
10
11
error: enum with no variants
  --> $DIR/empty_enum.rs:5:1
   |
LL | enum Empty {}
   | ^^^^^^^^^^^^^
   |
   = note: `-D clippy::empty-enum` implied by `-D warnings`
   = help: consider using the uninhabited type `!` (never type) or a wrapper around it to introduce a type which can't be instantiated

error: aborting due to previous error