summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-item/associated-item-enum.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/associated-item/associated-item-enum.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/associated-item/associated-item-enum.stderr')
-rw-r--r--tests/ui/associated-item/associated-item-enum.stderr39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/ui/associated-item/associated-item-enum.stderr b/tests/ui/associated-item/associated-item-enum.stderr
new file mode 100644
index 000000000..ebf3c5499
--- /dev/null
+++ b/tests/ui/associated-item/associated-item-enum.stderr
@@ -0,0 +1,39 @@
+error[E0599]: no variant or associated item named `mispellable` found for enum `Enum` in the current scope
+ --> $DIR/associated-item-enum.rs:17:11
+ |
+LL | enum Enum { Variant }
+ | --------- variant or associated item `mispellable` not found for this enum
+...
+LL | Enum::mispellable();
+ | ^^^^^^^^^^^
+ | |
+ | variant or associated item not found in `Enum`
+ | help: there is an associated function with a similar name: `misspellable`
+
+error[E0599]: no variant or associated item named `mispellable_trait` found for enum `Enum` in the current scope
+ --> $DIR/associated-item-enum.rs:18:11
+ |
+LL | enum Enum { Variant }
+ | --------- variant or associated item `mispellable_trait` not found for this enum
+...
+LL | Enum::mispellable_trait();
+ | ^^^^^^^^^^^^^^^^^
+ | |
+ | variant or associated item not found in `Enum`
+ | help: there is an associated function with a similar name: `misspellable`
+
+error[E0599]: no variant or associated item named `MISPELLABLE` found for enum `Enum` in the current scope
+ --> $DIR/associated-item-enum.rs:19:11
+ |
+LL | enum Enum { Variant }
+ | --------- variant or associated item `MISPELLABLE` not found for this enum
+...
+LL | Enum::MISPELLABLE;
+ | ^^^^^^^^^^^
+ | |
+ | variant or associated item not found in `Enum`
+ | help: there is an associated constant with a similar name: `MISSPELLABLE`
+
+error: aborting due to 3 previous errors
+
+For more information about this error, try `rustc --explain E0599`.