]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-22933-2.stderr
improve unknown enum variant errors
[rust.git] / src / test / ui / issues / issue-22933-2.stderr
index 23b1474bde70428e6145852cd466b60b7ea291e4..72038ea20a3fae86b269f5060ca868f2c359cc93 100644 (file)
@@ -1,11 +1,11 @@
-error[E0599]: no variant named `PIE` found for type `Delicious` in the current scope
+error[E0599]: no variant or associated item named `PIE` found for type `Delicious` in the current scope
   --> $DIR/issue-22933-2.rs:4:55
    |
 LL | enum Delicious {
-   | -------------- variant `PIE` not found here
+   | -------------- variant or associated item `PIE` not found here
 ...
 LL |     ApplePie = Delicious::Apple as isize | Delicious::PIE as isize,
-   |                                                       ^^^ variant not found in `Delicious`
+   |                                                       ^^^ variant or associated item not found in `Delicious`
 
 error: aborting due to previous error