]> git.proxmox.com Git - rustc.git/blob - src/test/ui/associated-item/associated-item-enum.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / associated-item / associated-item-enum.stderr
1 error[E0599]: no variant or associated item named `mispellable` found for enum `Enum` in the current scope
2 --> $DIR/associated-item-enum.rs:17:11
3 |
4 LL | enum Enum { Variant }
5 | --------- variant or associated item `mispellable` not found here
6 ...
7 LL | Enum::mispellable();
8 | ^^^^^^^^^^^
9 | |
10 | variant or associated item not found in `Enum`
11 | help: there is an associated function with a similar name: `misspellable`
12
13 error[E0599]: no variant or associated item named `mispellable_trait` found for enum `Enum` in the current scope
14 --> $DIR/associated-item-enum.rs:18:11
15 |
16 LL | enum Enum { Variant }
17 | --------- variant or associated item `mispellable_trait` not found here
18 ...
19 LL | Enum::mispellable_trait();
20 | ^^^^^^^^^^^^^^^^^ variant or associated item not found in `Enum`
21
22 error[E0599]: no variant or associated item named `MISPELLABLE` found for enum `Enum` in the current scope
23 --> $DIR/associated-item-enum.rs:19:11
24 |
25 LL | enum Enum { Variant }
26 | --------- variant or associated item `MISPELLABLE` not found here
27 ...
28 LL | Enum::MISPELLABLE;
29 | ^^^^^^^^^^^
30 | |
31 | variant or associated item not found in `Enum`
32 | help: there is an associated constant with a similar name: `MISSPELLABLE`
33
34 error: aborting due to 3 previous errors
35
36 For more information about this error, try `rustc --explain E0599`.