]> git.lizzy.rs Git - rust.git/blob - tests/ui/associated-item/associated-item-enum.stderr
Rollup merge of #106477 - Nathan-Fenner:nathanf/refined-error-span-trait-impl, r...
[rust.git] / tests / 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 for this enum
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 for this enum
18 ...
19 LL |     Enum::mispellable_trait();
20    |           ^^^^^^^^^^^^^^^^^
21    |           |
22    |           variant or associated item not found in `Enum`
23    |           help: there is an associated function with a similar name: `misspellable`
24
25 error[E0599]: no variant or associated item named `MISPELLABLE` found for enum `Enum` in the current scope
26   --> $DIR/associated-item-enum.rs:19:11
27    |
28 LL | enum Enum { Variant }
29    | --------- variant or associated item `MISPELLABLE` not found for this enum
30 ...
31 LL |     Enum::MISPELLABLE;
32    |           ^^^^^^^^^^^
33    |           |
34    |           variant or associated item not found in `Enum`
35    |           help: there is an associated constant with a similar name: `MISSPELLABLE`
36
37 error: aborting due to 3 previous errors
38
39 For more information about this error, try `rustc --explain E0599`.