@@ -113,52 +113,58 @@ LL | let _ = Enum::A;
113
113
| ^^^^ help: use the applicable keyword: `Self`
114
114
115
115
error: unnecessary structure name repetition
116
- --> $DIR/use_self.rs:199:13
116
+ --> $DIR/use_self.rs:194:14
117
+ |
118
+ LL | <Vec<B>>::a(v)
119
+ | ^^^ help: use the applicable keyword: `Self`
120
+
121
+ error: unnecessary structure name repetition
122
+ --> $DIR/use_self.rs:214:13
117
123
|
118
124
LL | nested::A::fun_1();
119
125
| ^^^^^^^^^ help: use the applicable keyword: `Self`
120
126
121
127
error: unnecessary structure name repetition
122
- --> $DIR/use_self.rs:200 :13
128
+ --> $DIR/use_self.rs:215 :13
123
129
|
124
130
LL | nested::A::A;
125
131
| ^^^^^^^^^ help: use the applicable keyword: `Self`
126
132
127
133
error: unnecessary structure name repetition
128
- --> $DIR/use_self.rs:202 :13
134
+ --> $DIR/use_self.rs:217 :13
129
135
|
130
136
LL | nested::A {};
131
137
| ^^^^^^^^^ help: use the applicable keyword: `Self`
132
138
133
139
error: unnecessary structure name repetition
134
- --> $DIR/use_self.rs:221 :13
140
+ --> $DIR/use_self.rs:236 :13
135
141
|
136
142
LL | TestStruct::from_something()
137
143
| ^^^^^^^^^^ help: use the applicable keyword: `Self`
138
144
139
145
error: unnecessary structure name repetition
140
- --> $DIR/use_self.rs:235 :25
146
+ --> $DIR/use_self.rs:250 :25
141
147
|
142
148
LL | async fn g() -> S {
143
149
| ^ help: use the applicable keyword: `Self`
144
150
145
151
error: unnecessary structure name repetition
146
- --> $DIR/use_self.rs:236 :13
152
+ --> $DIR/use_self.rs:251 :13
147
153
|
148
154
LL | S {}
149
155
| ^ help: use the applicable keyword: `Self`
150
156
151
157
error: unnecessary structure name repetition
152
- --> $DIR/use_self.rs:240 :16
158
+ --> $DIR/use_self.rs:255 :16
153
159
|
154
160
LL | &p[S::A..S::B]
155
161
| ^ help: use the applicable keyword: `Self`
156
162
157
163
error: unnecessary structure name repetition
158
- --> $DIR/use_self.rs:240 :22
164
+ --> $DIR/use_self.rs:255 :22
159
165
|
160
166
LL | &p[S::A..S::B]
161
167
| ^ help: use the applicable keyword: `Self`
162
168
163
- error: aborting due to 25 previous errors
169
+ error: aborting due to 26 previous errors
164
170
0 commit comments