@@ -2,7 +2,7 @@ error[E0425]: cannot find function `baz` in this scope
22 --> $DIR/issue-14254.rs:19:9
33 |
44LL | baz();
5- | ^^^ help: try : `self.baz`
5+ | ^^^ help: you might have meant to call the method : `self.baz`
66
77error[E0425]: cannot find value `a` in this scope
88 --> $DIR/issue-14254.rs:21:9
@@ -14,7 +14,7 @@ error[E0425]: cannot find function `baz` in this scope
1414 --> $DIR/issue-14254.rs:28:9
1515 |
1616LL | baz();
17- | ^^^ help: try : `self.baz`
17+ | ^^^ help: you might have meant to call the method : `self.baz`
1818
1919error[E0425]: cannot find value `x` in this scope
2020 --> $DIR/issue-14254.rs:30:9
@@ -38,7 +38,7 @@ error[E0425]: cannot find value `bah` in this scope
3838 --> $DIR/issue-14254.rs:36:9
3939 |
4040LL | bah;
41- | ^^^ help: try : `Self::bah`
41+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
4242
4343error[E0425]: cannot find value `b` in this scope
4444 --> $DIR/issue-14254.rs:38:9
@@ -50,7 +50,7 @@ error[E0425]: cannot find function `baz` in this scope
5050 --> $DIR/issue-14254.rs:45:9
5151 |
5252LL | baz();
53- | ^^^ help: try : `self.baz`
53+ | ^^^ help: you might have meant to call the method : `self.baz`
5454
5555error[E0425]: cannot find value `x` in this scope
5656 --> $DIR/issue-14254.rs:47:9
@@ -74,7 +74,7 @@ error[E0425]: cannot find value `bah` in this scope
7474 --> $DIR/issue-14254.rs:53:9
7575 |
7676LL | bah;
77- | ^^^ help: try : `Self::bah`
77+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
7878
7979error[E0425]: cannot find value `b` in this scope
8080 --> $DIR/issue-14254.rs:55:9
@@ -86,61 +86,61 @@ error[E0425]: cannot find function `baz` in this scope
8686 --> $DIR/issue-14254.rs:62:9
8787 |
8888LL | baz();
89- | ^^^ help: try : `self.baz`
89+ | ^^^ help: you might have meant to call the method : `self.baz`
9090
9191error[E0425]: cannot find value `bah` in this scope
9292 --> $DIR/issue-14254.rs:64:9
9393 |
9494LL | bah;
95- | ^^^ help: try : `Self::bah`
95+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
9696
9797error[E0425]: cannot find function `baz` in this scope
9898 --> $DIR/issue-14254.rs:71:9
9999 |
100100LL | baz();
101- | ^^^ help: try : `self.baz`
101+ | ^^^ help: you might have meant to call the method : `self.baz`
102102
103103error[E0425]: cannot find value `bah` in this scope
104104 --> $DIR/issue-14254.rs:73:9
105105 |
106106LL | bah;
107- | ^^^ help: try : `Self::bah`
107+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
108108
109109error[E0425]: cannot find function `baz` in this scope
110110 --> $DIR/issue-14254.rs:80:9
111111 |
112112LL | baz();
113- | ^^^ help: try : `self.baz`
113+ | ^^^ help: you might have meant to call the method : `self.baz`
114114
115115error[E0425]: cannot find value `bah` in this scope
116116 --> $DIR/issue-14254.rs:82:9
117117 |
118118LL | bah;
119- | ^^^ help: try : `Self::bah`
119+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
120120
121121error[E0425]: cannot find function `baz` in this scope
122122 --> $DIR/issue-14254.rs:89:9
123123 |
124124LL | baz();
125- | ^^^ help: try : `self.baz`
125+ | ^^^ help: you might have meant to call the method : `self.baz`
126126
127127error[E0425]: cannot find value `bah` in this scope
128128 --> $DIR/issue-14254.rs:91:9
129129 |
130130LL | bah;
131- | ^^^ help: try : `Self::bah`
131+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
132132
133133error[E0425]: cannot find function `baz` in this scope
134134 --> $DIR/issue-14254.rs:98:9
135135 |
136136LL | baz();
137- | ^^^ help: try : `self.baz`
137+ | ^^^ help: you might have meant to call the method : `self.baz`
138138
139139error[E0425]: cannot find value `bah` in this scope
140140 --> $DIR/issue-14254.rs:100:9
141141 |
142142LL | bah;
143- | ^^^ help: try : `Self::bah`
143+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
144144
145145error: aborting due to 24 previous errors
146146
0 commit comments