@@ -167,49 +167,55 @@ error: value assigned to `a` is never read
167167 --> $DIR/liveness-unused.rs:183:5
168168 |
169169LL | a += b;
170- | ^^^^^^
171- |
172- = help: maybe it is overwritten before being read?
170+ | ^^^^^^ this value is reassigned later and never used
171+ LL |
172+ LL | a -= c;
173+ | ------ `a` is overwritten here before the previous value is read
173174
174175error: value assigned to `a` is never read
175176 --> $DIR/liveness-unused.rs:185:5
176177 |
177178LL | a -= c;
178- | ^^^^^^
179- |
180- = help: maybe it is overwritten before being read?
179+ | ^^^^^^ this value is reassigned later and never used
180+ LL |
181+ LL | a *= d;
182+ | ------ `a` is overwritten here before the previous value is read
181183
182184error: value assigned to `a` is never read
183185 --> $DIR/liveness-unused.rs:187:5
184186 |
185187LL | a *= d;
186- | ^^^^^^
187- |
188- = help: maybe it is overwritten before being read?
188+ | ^^^^^^ this value is reassigned later and never used
189+ LL |
190+ LL | a /= e;
191+ | ------ `a` is overwritten here before the previous value is read
189192
190193error: value assigned to `a` is never read
191194 --> $DIR/liveness-unused.rs:189:5
192195 |
193196LL | a /= e;
194- | ^^^^^^
195- |
196- = help: maybe it is overwritten before being read?
197+ | ^^^^^^ this value is reassigned later and never used
198+ LL |
199+ LL | a |= f;
200+ | ------ `a` is overwritten here before the previous value is read
197201
198202error: value assigned to `a` is never read
199203 --> $DIR/liveness-unused.rs:191:5
200204 |
201205LL | a |= f;
202- | ^^^^^^
203- |
204- = help: maybe it is overwritten before being read?
206+ | ^^^^^^ this value is reassigned later and never used
207+ LL |
208+ LL | a &= g;
209+ | ------ `a` is overwritten here before the previous value is read
205210
206211error: value assigned to `a` is never read
207212 --> $DIR/liveness-unused.rs:193:5
208213 |
209214LL | a &= g;
210- | ^^^^^^
211- |
212- = help: maybe it is overwritten before being read?
215+ | ^^^^^^ this value is reassigned later and never used
216+ LL |
217+ LL | a %= h;
218+ | ------ `a` is overwritten here before the previous value is read
213219
214220error: value assigned to `a` is never read
215221 --> $DIR/liveness-unused.rs:195:5
@@ -231,33 +237,37 @@ error: value assigned to `a` is never read
231237 --> $DIR/liveness-unused.rs:229:5
232238 |
233239LL | a += b;
234- | ^^^^^^
235- |
236- = help: maybe it is overwritten before being read?
240+ | ^^^^^^ this value is reassigned later and never used
241+ LL |
242+ LL | a -= c;
243+ | ------ `a` is overwritten here before the previous value is read
237244
238245error: value assigned to `a` is never read
239246 --> $DIR/liveness-unused.rs:231:5
240247 |
241248LL | a -= c;
242- | ^^^^^^
243- |
244- = help: maybe it is overwritten before being read?
249+ | ^^^^^^ this value is reassigned later and never used
250+ LL |
251+ LL | a *= d;
252+ | ------ `a` is overwritten here before the previous value is read
245253
246254error: value assigned to `a` is never read
247255 --> $DIR/liveness-unused.rs:233:5
248256 |
249257LL | a *= d;
250- | ^^^^^^
251- |
252- = help: maybe it is overwritten before being read?
258+ | ^^^^^^ this value is reassigned later and never used
259+ LL |
260+ LL | a /= e;
261+ | ------ `a` is overwritten here before the previous value is read
253262
254263error: value assigned to `a` is never read
255264 --> $DIR/liveness-unused.rs:235:5
256265 |
257266LL | a /= e;
258- | ^^^^^^
259- |
260- = help: maybe it is overwritten before being read?
267+ | ^^^^^^ this value is reassigned later and never used
268+ LL |
269+ LL | a %= f;
270+ | ------ `a` is overwritten here before the previous value is read
261271
262272error: value assigned to `a` is never read
263273 --> $DIR/liveness-unused.rs:237:5
0 commit comments