]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/empty_enum.stderr
Enable never type in empty enum ui test; run cargo dev bless
[rust.git] / tests / ui / empty_enum.stderr
index f198793fed43df19b759f46161b2399597e8d764..7125e5f602b75ba962c400f6824b82e19b3d4bba 100644 (file)
@@ -1,15 +1,11 @@
 error: enum with no variants
- --> $DIR/empty_enum.rs:7:1
-  |
-7 | enum Empty {}
-  | ^^^^^^^^^^^^^
-  |
-  = note: `-D clippy::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 {}
-  | ^^^^^^^^^^^^^
+  --> $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