]> 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 b1e4eb277550aa3d81942bb7d35613d935f8df40..7125e5f602b75ba962c400f6824b82e19b3d4bba 100644 (file)
@@ -1,15 +1,11 @@
 error: enum with no variants
-  --> $DIR/empty_enum.rs:4:1
+  --> $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
-  --> $DIR/empty_enum.rs:4:1
-   |
-LL | enum Empty {}
-   | ^^^^^^^^^^^^^
+   = 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