@@ -5,10 +5,12 @@ LL | enum Enum { Variant }
55 | --------- variant or associated item `mispellable` not found for this enum
66...
77LL | 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`
8+ | ^^^^^^^^^^^ variant or associated item not found in `Enum`
9+ |
10+ help: there is an associated function with a similar name
11+ |
12+ LL | Enum::misspellable();
13+ | ~~~~~~~~~~~~
1214
1315error[E0599]: no variant or associated item named `mispellable_trait` found for enum `Enum` in the current scope
1416 --> $DIR/associated-item-enum.rs:18:11
@@ -17,10 +19,12 @@ LL | enum Enum { Variant }
1719 | --------- variant or associated item `mispellable_trait` not found for this enum
1820...
1921LL | 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_trait`
22+ | ^^^^^^^^^^^^^^^^^ variant or associated item not found in `Enum`
23+ |
24+ help: there is an associated function with a similar name
25+ |
26+ LL | Enum::misspellable_trait();
27+ | ~~~~~~~~~~~~~~~~~~
2428
2529error[E0599]: no variant or associated item named `MISPELLABLE` found for enum `Enum` in the current scope
2630 --> $DIR/associated-item-enum.rs:19:11
@@ -29,10 +33,12 @@ LL | enum Enum { Variant }
2933 | --------- variant or associated item `MISPELLABLE` not found for this enum
3034...
3135LL | 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+ | ^^^^^^^^^^^ variant or associated item not found in `Enum`
37+ |
38+ help: there is an associated constant with a similar name
39+ |
40+ LL | Enum::MISSPELLABLE;
41+ | ~~~~~~~~~~~~
3642
3743error: aborting due to 3 previous errors
3844
0 commit comments