]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/empty_enum.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / empty_enum.stderr
index fd981f2210f0a84788b2ca125686274fb6fff2a6..d2e3688eb4d38315f900673177098a54a3a563b2 100644 (file)
@@ -1,14 +1,14 @@
 error: enum with no variants
   --> $DIR/empty_enum.rs:13:1
    |
-13 | enum Empty {}
+LL | 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:13:1
    |
-13 | enum Empty {}
+LL | enum Empty {}
    | ^^^^^^^^^^^^^
 
 error: aborting due to previous error