@@ -2,7 +2,7 @@ error[E0425]: cannot find function `baz` in this scope
2
2
--> $DIR/issue-14254.rs:19:9
3
3
|
4
4
LL | baz();
5
- | ^^^ help: try : `self.baz`
5
+ | ^^^ help: you might have meant to call the method : `self.baz`
6
6
7
7
error[E0425]: cannot find value `a` in this scope
8
8
--> $DIR/issue-14254.rs:21:9
@@ -14,7 +14,7 @@ error[E0425]: cannot find function `baz` in this scope
14
14
--> $DIR/issue-14254.rs:28:9
15
15
|
16
16
LL | baz();
17
- | ^^^ help: try : `self.baz`
17
+ | ^^^ help: you might have meant to call the method : `self.baz`
18
18
19
19
error[E0425]: cannot find value `x` in this scope
20
20
--> $DIR/issue-14254.rs:30:9
@@ -38,7 +38,7 @@ error[E0425]: cannot find value `bah` in this scope
38
38
--> $DIR/issue-14254.rs:36:9
39
39
|
40
40
LL | bah;
41
- | ^^^ help: try : `Self::bah`
41
+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
42
42
43
43
error[E0425]: cannot find value `b` in this scope
44
44
--> $DIR/issue-14254.rs:38:9
@@ -50,7 +50,7 @@ error[E0425]: cannot find function `baz` in this scope
50
50
--> $DIR/issue-14254.rs:45:9
51
51
|
52
52
LL | baz();
53
- | ^^^ help: try : `self.baz`
53
+ | ^^^ help: you might have meant to call the method : `self.baz`
54
54
55
55
error[E0425]: cannot find value `x` in this scope
56
56
--> $DIR/issue-14254.rs:47:9
@@ -74,7 +74,7 @@ error[E0425]: cannot find value `bah` in this scope
74
74
--> $DIR/issue-14254.rs:53:9
75
75
|
76
76
LL | bah;
77
- | ^^^ help: try : `Self::bah`
77
+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
78
78
79
79
error[E0425]: cannot find value `b` in this scope
80
80
--> $DIR/issue-14254.rs:55:9
@@ -86,61 +86,61 @@ error[E0425]: cannot find function `baz` in this scope
86
86
--> $DIR/issue-14254.rs:62:9
87
87
|
88
88
LL | baz();
89
- | ^^^ help: try : `self.baz`
89
+ | ^^^ help: you might have meant to call the method : `self.baz`
90
90
91
91
error[E0425]: cannot find value `bah` in this scope
92
92
--> $DIR/issue-14254.rs:64:9
93
93
|
94
94
LL | bah;
95
- | ^^^ help: try : `Self::bah`
95
+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
96
96
97
97
error[E0425]: cannot find function `baz` in this scope
98
98
--> $DIR/issue-14254.rs:71:9
99
99
|
100
100
LL | baz();
101
- | ^^^ help: try : `self.baz`
101
+ | ^^^ help: you might have meant to call the method : `self.baz`
102
102
103
103
error[E0425]: cannot find value `bah` in this scope
104
104
--> $DIR/issue-14254.rs:73:9
105
105
|
106
106
LL | bah;
107
- | ^^^ help: try : `Self::bah`
107
+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
108
108
109
109
error[E0425]: cannot find function `baz` in this scope
110
110
--> $DIR/issue-14254.rs:80:9
111
111
|
112
112
LL | baz();
113
- | ^^^ help: try : `self.baz`
113
+ | ^^^ help: you might have meant to call the method : `self.baz`
114
114
115
115
error[E0425]: cannot find value `bah` in this scope
116
116
--> $DIR/issue-14254.rs:82:9
117
117
|
118
118
LL | bah;
119
- | ^^^ help: try : `Self::bah`
119
+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
120
120
121
121
error[E0425]: cannot find function `baz` in this scope
122
122
--> $DIR/issue-14254.rs:89:9
123
123
|
124
124
LL | baz();
125
- | ^^^ help: try : `self.baz`
125
+ | ^^^ help: you might have meant to call the method : `self.baz`
126
126
127
127
error[E0425]: cannot find value `bah` in this scope
128
128
--> $DIR/issue-14254.rs:91:9
129
129
|
130
130
LL | bah;
131
- | ^^^ help: try : `Self::bah`
131
+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
132
132
133
133
error[E0425]: cannot find function `baz` in this scope
134
134
--> $DIR/issue-14254.rs:98:9
135
135
|
136
136
LL | baz();
137
- | ^^^ help: try : `self.baz`
137
+ | ^^^ help: you might have meant to call the method : `self.baz`
138
138
139
139
error[E0425]: cannot find value `bah` in this scope
140
140
--> $DIR/issue-14254.rs:100:9
141
141
|
142
142
LL | bah;
143
- | ^^^ help: try : `Self::bah`
143
+ | ^^^ help: you might have meant to call the associated function : `Self::bah`
144
144
145
145
error: aborting due to 24 previous errors
146
146
0 commit comments