@@ -26,7 +26,12 @@ error[E0425]: cannot find value `bah` in this scope
2626 --> $DIR/issue-14254.rs:36:9
2727 |
2828LL | bah;
29- | ^^^ help: you might have meant to call the associated function: `Self::bah`
29+ | ^^^
30+ |
31+ help: you might have meant to refer to the associated function
32+ |
33+ LL | Self::bah;
34+ | ~~~~~~~~~
3035
3136error[E0425]: cannot find value `b` in this scope
3237 --> $DIR/issue-14254.rs:38:9
@@ -56,7 +61,12 @@ error[E0425]: cannot find value `bah` in this scope
5661 --> $DIR/issue-14254.rs:53:9
5762 |
5863LL | bah;
59- | ^^^ help: you might have meant to call the associated function: `Self::bah`
64+ | ^^^
65+ |
66+ help: you might have meant to refer to the associated function
67+ |
68+ LL | Self::bah;
69+ | ~~~~~~~~~
6070
6171error[E0425]: cannot find value `b` in this scope
6272 --> $DIR/issue-14254.rs:55:9
@@ -68,31 +78,56 @@ error[E0425]: cannot find value `bah` in this scope
6878 --> $DIR/issue-14254.rs:64:9
6979 |
7080LL | bah;
71- | ^^^ help: you might have meant to call the associated function: `Self::bah`
81+ | ^^^
82+ |
83+ help: you might have meant to refer to the associated function
84+ |
85+ LL | Self::bah;
86+ | ~~~~~~~~~
7287
7388error[E0425]: cannot find value `bah` in this scope
7489 --> $DIR/issue-14254.rs:73:9
7590 |
7691LL | bah;
77- | ^^^ help: you might have meant to call the associated function: `Self::bah`
92+ | ^^^
93+ |
94+ help: you might have meant to refer to the associated function
95+ |
96+ LL | Self::bah;
97+ | ~~~~~~~~~
7898
7999error[E0425]: cannot find value `bah` in this scope
80100 --> $DIR/issue-14254.rs:82:9
81101 |
82102LL | bah;
83- | ^^^ help: you might have meant to call the associated function: `Self::bah`
103+ | ^^^
104+ |
105+ help: you might have meant to refer to the associated function
106+ |
107+ LL | Self::bah;
108+ | ~~~~~~~~~
84109
85110error[E0425]: cannot find value `bah` in this scope
86111 --> $DIR/issue-14254.rs:91:9
87112 |
88113LL | bah;
89- | ^^^ help: you might have meant to call the associated function: `Self::bah`
114+ | ^^^
115+ |
116+ help: you might have meant to refer to the associated function
117+ |
118+ LL | Self::bah;
119+ | ~~~~~~~~~
90120
91121error[E0425]: cannot find value `bah` in this scope
92122 --> $DIR/issue-14254.rs:100:9
93123 |
94124LL | bah;
95- | ^^^ help: you might have meant to call the associated function: `Self::bah`
125+ | ^^^
126+ |
127+ help: you might have meant to refer to the associated function
128+ |
129+ LL | Self::bah;
130+ | ~~~~~~~~~
96131
97132error[E0425]: cannot find function `baz` in this scope
98133 --> $DIR/issue-14254.rs:19:9
0 commit comments