]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/arithmetic_side_effects.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / arithmetic_side_effects.stderr
CommitLineData
2b03887a 1error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 2 --> $DIR/arithmetic_side_effects.rs:243:5
2b03887a
FG
3 |
4LL | _n += 1;
5 | ^^^^^^^
f25598a0
FG
6 |
7 = note: `-D clippy::arithmetic-side-effects` implied by `-D warnings`
2b03887a
FG
8
9error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 10 --> $DIR/arithmetic_side_effects.rs:244:5
2b03887a
FG
11 |
12LL | _n += &1;
13 | ^^^^^^^^
14
15error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 16 --> $DIR/arithmetic_side_effects.rs:245:5
2b03887a
FG
17 |
18LL | _n -= 1;
19 | ^^^^^^^
20
21error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 22 --> $DIR/arithmetic_side_effects.rs:246:5
2b03887a
FG
23 |
24LL | _n -= &1;
25 | ^^^^^^^^
26
27error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 28 --> $DIR/arithmetic_side_effects.rs:247:5
2b03887a
FG
29 |
30LL | _n /= 0;
31 | ^^^^^^^
32
33error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 34 --> $DIR/arithmetic_side_effects.rs:248:5
2b03887a
FG
35 |
36LL | _n /= &0;
37 | ^^^^^^^^
38
39error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 40 --> $DIR/arithmetic_side_effects.rs:249:5
2b03887a
FG
41 |
42LL | _n %= 0;
43 | ^^^^^^^
44
45error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 46 --> $DIR/arithmetic_side_effects.rs:250:5
2b03887a
FG
47 |
48LL | _n %= &0;
49 | ^^^^^^^^
50
51error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 52 --> $DIR/arithmetic_side_effects.rs:251:5
2b03887a
FG
53 |
54LL | _n *= 2;
55 | ^^^^^^^
56
57error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 58 --> $DIR/arithmetic_side_effects.rs:252:5
2b03887a
FG
59 |
60LL | _n *= &2;
61 | ^^^^^^^^
62
63error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0
FG
64 --> $DIR/arithmetic_side_effects.rs:253:5
65 |
66LL | _n += -1;
67 | ^^^^^^^^
68
69error: arithmetic operation that can potentially result in unexpected side-effects
70 --> $DIR/arithmetic_side_effects.rs:254:5
71 |
72LL | _n += &-1;
73 | ^^^^^^^^^
74
75error: arithmetic operation that can potentially result in unexpected side-effects
76 --> $DIR/arithmetic_side_effects.rs:255:5
77 |
78LL | _n -= -1;
79 | ^^^^^^^^
80
81error: arithmetic operation that can potentially result in unexpected side-effects
82 --> $DIR/arithmetic_side_effects.rs:256:5
83 |
84LL | _n -= &-1;
85 | ^^^^^^^^^
86
87error: arithmetic operation that can potentially result in unexpected side-effects
88 --> $DIR/arithmetic_side_effects.rs:257:5
89 |
90LL | _n /= -0;
91 | ^^^^^^^^
92
93error: arithmetic operation that can potentially result in unexpected side-effects
94 --> $DIR/arithmetic_side_effects.rs:258:5
95 |
96LL | _n /= &-0;
97 | ^^^^^^^^^
98
99error: arithmetic operation that can potentially result in unexpected side-effects
100 --> $DIR/arithmetic_side_effects.rs:259:5
101 |
102LL | _n %= -0;
103 | ^^^^^^^^
104
105error: arithmetic operation that can potentially result in unexpected side-effects
106 --> $DIR/arithmetic_side_effects.rs:260:5
107 |
108LL | _n %= &-0;
109 | ^^^^^^^^^
110
111error: arithmetic operation that can potentially result in unexpected side-effects
112 --> $DIR/arithmetic_side_effects.rs:261:5
113 |
114LL | _n *= -2;
115 | ^^^^^^^^
116
117error: arithmetic operation that can potentially result in unexpected side-effects
118 --> $DIR/arithmetic_side_effects.rs:262:5
119 |
120LL | _n *= &-2;
121 | ^^^^^^^^^
122
123error: arithmetic operation that can potentially result in unexpected side-effects
124 --> $DIR/arithmetic_side_effects.rs:263:5
125 |
126LL | _custom += Custom;
127 | ^^^^^^^^^^^^^^^^^
128
129error: arithmetic operation that can potentially result in unexpected side-effects
130 --> $DIR/arithmetic_side_effects.rs:264:5
131 |
132LL | _custom += &Custom;
133 | ^^^^^^^^^^^^^^^^^^
134
135error: arithmetic operation that can potentially result in unexpected side-effects
136 --> $DIR/arithmetic_side_effects.rs:265:5
137 |
138LL | _custom -= Custom;
139 | ^^^^^^^^^^^^^^^^^
140
141error: arithmetic operation that can potentially result in unexpected side-effects
142 --> $DIR/arithmetic_side_effects.rs:266:5
143 |
144LL | _custom -= &Custom;
145 | ^^^^^^^^^^^^^^^^^^
146
147error: arithmetic operation that can potentially result in unexpected side-effects
148 --> $DIR/arithmetic_side_effects.rs:267:5
149 |
150LL | _custom /= Custom;
151 | ^^^^^^^^^^^^^^^^^
152
153error: arithmetic operation that can potentially result in unexpected side-effects
154 --> $DIR/arithmetic_side_effects.rs:268:5
155 |
156LL | _custom /= &Custom;
157 | ^^^^^^^^^^^^^^^^^^
158
159error: arithmetic operation that can potentially result in unexpected side-effects
160 --> $DIR/arithmetic_side_effects.rs:269:5
161 |
162LL | _custom %= Custom;
163 | ^^^^^^^^^^^^^^^^^
164
165error: arithmetic operation that can potentially result in unexpected side-effects
166 --> $DIR/arithmetic_side_effects.rs:270:5
167 |
168LL | _custom %= &Custom;
169 | ^^^^^^^^^^^^^^^^^^
170
171error: arithmetic operation that can potentially result in unexpected side-effects
172 --> $DIR/arithmetic_side_effects.rs:271:5
173 |
174LL | _custom *= Custom;
175 | ^^^^^^^^^^^^^^^^^
176
177error: arithmetic operation that can potentially result in unexpected side-effects
178 --> $DIR/arithmetic_side_effects.rs:272:5
179 |
180LL | _custom *= &Custom;
181 | ^^^^^^^^^^^^^^^^^^
182
183error: arithmetic operation that can potentially result in unexpected side-effects
184 --> $DIR/arithmetic_side_effects.rs:273:5
185 |
186LL | _custom += -Custom;
187 | ^^^^^^^^^^^^^^^^^^
188
189error: arithmetic operation that can potentially result in unexpected side-effects
190 --> $DIR/arithmetic_side_effects.rs:274:5
191 |
192LL | _custom += &-Custom;
193 | ^^^^^^^^^^^^^^^^^^^
194
195error: arithmetic operation that can potentially result in unexpected side-effects
196 --> $DIR/arithmetic_side_effects.rs:275:5
197 |
198LL | _custom -= -Custom;
199 | ^^^^^^^^^^^^^^^^^^
200
201error: arithmetic operation that can potentially result in unexpected side-effects
202 --> $DIR/arithmetic_side_effects.rs:276:5
203 |
204LL | _custom -= &-Custom;
205 | ^^^^^^^^^^^^^^^^^^^
206
207error: arithmetic operation that can potentially result in unexpected side-effects
208 --> $DIR/arithmetic_side_effects.rs:277:5
209 |
210LL | _custom /= -Custom;
211 | ^^^^^^^^^^^^^^^^^^
212
213error: arithmetic operation that can potentially result in unexpected side-effects
214 --> $DIR/arithmetic_side_effects.rs:278:5
215 |
216LL | _custom /= &-Custom;
217 | ^^^^^^^^^^^^^^^^^^^
218
219error: arithmetic operation that can potentially result in unexpected side-effects
220 --> $DIR/arithmetic_side_effects.rs:279:5
221 |
222LL | _custom %= -Custom;
223 | ^^^^^^^^^^^^^^^^^^
224
225error: arithmetic operation that can potentially result in unexpected side-effects
226 --> $DIR/arithmetic_side_effects.rs:280:5
227 |
228LL | _custom %= &-Custom;
229 | ^^^^^^^^^^^^^^^^^^^
230
231error: arithmetic operation that can potentially result in unexpected side-effects
232 --> $DIR/arithmetic_side_effects.rs:281:5
233 |
234LL | _custom *= -Custom;
235 | ^^^^^^^^^^^^^^^^^^
236
237error: arithmetic operation that can potentially result in unexpected side-effects
238 --> $DIR/arithmetic_side_effects.rs:282:5
239 |
240LL | _custom *= &-Custom;
241 | ^^^^^^^^^^^^^^^^^^^
242
243error: arithmetic operation that can potentially result in unexpected side-effects
244 --> $DIR/arithmetic_side_effects.rs:285:10
2b03887a
FG
245 |
246LL | _n = _n + 1;
247 | ^^^^^^
248
249error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 250 --> $DIR/arithmetic_side_effects.rs:286:10
2b03887a
FG
251 |
252LL | _n = _n + &1;
253 | ^^^^^^^
254
255error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 256 --> $DIR/arithmetic_side_effects.rs:287:10
2b03887a
FG
257 |
258LL | _n = 1 + _n;
259 | ^^^^^^
260
261error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 262 --> $DIR/arithmetic_side_effects.rs:288:10
2b03887a
FG
263 |
264LL | _n = &1 + _n;
265 | ^^^^^^^
266
267error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 268 --> $DIR/arithmetic_side_effects.rs:289:10
2b03887a
FG
269 |
270LL | _n = _n - 1;
271 | ^^^^^^
272
273error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 274 --> $DIR/arithmetic_side_effects.rs:290:10
2b03887a
FG
275 |
276LL | _n = _n - &1;
277 | ^^^^^^^
278
279error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 280 --> $DIR/arithmetic_side_effects.rs:291:10
2b03887a
FG
281 |
282LL | _n = 1 - _n;
283 | ^^^^^^
284
285error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 286 --> $DIR/arithmetic_side_effects.rs:292:10
2b03887a
FG
287 |
288LL | _n = &1 - _n;
289 | ^^^^^^^
290
291error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 292 --> $DIR/arithmetic_side_effects.rs:293:10
2b03887a
FG
293 |
294LL | _n = _n / 0;
295 | ^^^^^^
296
297error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 298 --> $DIR/arithmetic_side_effects.rs:294:10
2b03887a
FG
299 |
300LL | _n = _n / &0;
301 | ^^^^^^^
302
303error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 304 --> $DIR/arithmetic_side_effects.rs:295:10
2b03887a
FG
305 |
306LL | _n = _n % 0;
307 | ^^^^^^
308
309error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 310 --> $DIR/arithmetic_side_effects.rs:296:10
2b03887a
FG
311 |
312LL | _n = _n % &0;
313 | ^^^^^^^
314
315error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 316 --> $DIR/arithmetic_side_effects.rs:297:10
2b03887a
FG
317 |
318LL | _n = _n * 2;
319 | ^^^^^^
320
321error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 322 --> $DIR/arithmetic_side_effects.rs:298:10
2b03887a
FG
323 |
324LL | _n = _n * &2;
325 | ^^^^^^^
326
327error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 328 --> $DIR/arithmetic_side_effects.rs:299:10
2b03887a
FG
329 |
330LL | _n = 2 * _n;
331 | ^^^^^^
332
333error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 334 --> $DIR/arithmetic_side_effects.rs:300:10
2b03887a
FG
335 |
336LL | _n = &2 * _n;
337 | ^^^^^^^
338
339error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 340 --> $DIR/arithmetic_side_effects.rs:301:10
2b03887a
FG
341 |
342LL | _n = 23 + &85;
343 | ^^^^^^^^
344
345error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 346 --> $DIR/arithmetic_side_effects.rs:302:10
2b03887a
FG
347 |
348LL | _n = &23 + 85;
349 | ^^^^^^^^
350
351error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 352 --> $DIR/arithmetic_side_effects.rs:303:10
2b03887a
FG
353 |
354LL | _n = &23 + &85;
355 | ^^^^^^^^^
356
357error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0
FG
358 --> $DIR/arithmetic_side_effects.rs:304:15
359 |
360LL | _custom = _custom + _custom;
361 | ^^^^^^^^^^^^^^^^^
362
363error: arithmetic operation that can potentially result in unexpected side-effects
364 --> $DIR/arithmetic_side_effects.rs:305:15
2b03887a 365 |
f25598a0
FG
366LL | _custom = _custom + &_custom;
367 | ^^^^^^^^^^^^^^^^^^
2b03887a
FG
368
369error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 370 --> $DIR/arithmetic_side_effects.rs:306:15
2b03887a 371 |
f25598a0
FG
372LL | _custom = Custom + _custom;
373 | ^^^^^^^^^^^^^^^^
2b03887a
FG
374
375error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 376 --> $DIR/arithmetic_side_effects.rs:307:15
2b03887a 377 |
f25598a0
FG
378LL | _custom = &Custom + _custom;
379 | ^^^^^^^^^^^^^^^^^
2b03887a
FG
380
381error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 382 --> $DIR/arithmetic_side_effects.rs:308:15
2b03887a 383 |
f25598a0
FG
384LL | _custom = _custom - Custom;
385 | ^^^^^^^^^^^^^^^^
2b03887a
FG
386
387error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 388 --> $DIR/arithmetic_side_effects.rs:309:15
2b03887a 389 |
f25598a0
FG
390LL | _custom = _custom - &Custom;
391 | ^^^^^^^^^^^^^^^^^
2b03887a
FG
392
393error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 394 --> $DIR/arithmetic_side_effects.rs:310:15
2b03887a 395 |
f25598a0
FG
396LL | _custom = Custom - _custom;
397 | ^^^^^^^^^^^^^^^^
2b03887a
FG
398
399error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 400 --> $DIR/arithmetic_side_effects.rs:311:15
2b03887a 401 |
f25598a0
FG
402LL | _custom = &Custom - _custom;
403 | ^^^^^^^^^^^^^^^^^
2b03887a
FG
404
405error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 406 --> $DIR/arithmetic_side_effects.rs:312:15
2b03887a 407 |
f25598a0
FG
408LL | _custom = _custom / Custom;
409 | ^^^^^^^^^^^^^^^^
2b03887a
FG
410
411error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 412 --> $DIR/arithmetic_side_effects.rs:313:15
2b03887a 413 |
f25598a0
FG
414LL | _custom = _custom / &Custom;
415 | ^^^^^^^^^^^^^^^^^
2b03887a
FG
416
417error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 418 --> $DIR/arithmetic_side_effects.rs:314:15
2b03887a 419 |
f25598a0
FG
420LL | _custom = _custom % Custom;
421 | ^^^^^^^^^^^^^^^^
2b03887a
FG
422
423error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 424 --> $DIR/arithmetic_side_effects.rs:315:15
2b03887a 425 |
f25598a0
FG
426LL | _custom = _custom % &Custom;
427 | ^^^^^^^^^^^^^^^^^
2b03887a
FG
428
429error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 430 --> $DIR/arithmetic_side_effects.rs:316:15
2b03887a 431 |
f25598a0
FG
432LL | _custom = _custom * Custom;
433 | ^^^^^^^^^^^^^^^^
2b03887a
FG
434
435error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 436 --> $DIR/arithmetic_side_effects.rs:317:15
2b03887a 437 |
f25598a0
FG
438LL | _custom = _custom * &Custom;
439 | ^^^^^^^^^^^^^^^^^
2b03887a
FG
440
441error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 442 --> $DIR/arithmetic_side_effects.rs:318:15
2b03887a 443 |
f25598a0
FG
444LL | _custom = Custom * _custom;
445 | ^^^^^^^^^^^^^^^^
2b03887a
FG
446
447error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 448 --> $DIR/arithmetic_side_effects.rs:319:15
2b03887a 449 |
f25598a0
FG
450LL | _custom = &Custom * _custom;
451 | ^^^^^^^^^^^^^^^^^
2b03887a
FG
452
453error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 454 --> $DIR/arithmetic_side_effects.rs:320:15
2b03887a 455 |
f25598a0
FG
456LL | _custom = Custom + &Custom;
457 | ^^^^^^^^^^^^^^^^
2b03887a
FG
458
459error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 460 --> $DIR/arithmetic_side_effects.rs:321:15
2b03887a 461 |
f25598a0
FG
462LL | _custom = &Custom + Custom;
463 | ^^^^^^^^^^^^^^^^
2b03887a
FG
464
465error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 466 --> $DIR/arithmetic_side_effects.rs:322:15
2b03887a 467 |
f25598a0
FG
468LL | _custom = &Custom + &Custom;
469 | ^^^^^^^^^^^^^^^^^
2b03887a
FG
470
471error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 472 --> $DIR/arithmetic_side_effects.rs:325:10
2b03887a 473 |
f25598a0
FG
474LL | _n = -_n;
475 | ^^^
2b03887a
FG
476
477error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 478 --> $DIR/arithmetic_side_effects.rs:326:10
2b03887a 479 |
f25598a0
FG
480LL | _n = -&_n;
481 | ^^^^
2b03887a
FG
482
483error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 484 --> $DIR/arithmetic_side_effects.rs:327:15
2b03887a 485 |
f25598a0
FG
486LL | _custom = -_custom;
487 | ^^^^^^^^
2b03887a
FG
488
489error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 490 --> $DIR/arithmetic_side_effects.rs:328:15
2b03887a 491 |
f25598a0
FG
492LL | _custom = -&_custom;
493 | ^^^^^^^^^
2b03887a
FG
494
495error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 496 --> $DIR/arithmetic_side_effects.rs:337:5
2b03887a 497 |
f25598a0
FG
498LL | 1 + i;
499 | ^^^^^
2b03887a
FG
500
501error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 502 --> $DIR/arithmetic_side_effects.rs:338:5
2b03887a 503 |
f25598a0
FG
504LL | i * 2;
505 | ^^^^^
2b03887a
FG
506
507error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 508 --> $DIR/arithmetic_side_effects.rs:340:5
2b03887a 509 |
f25598a0
FG
510LL | i - 2 + 2 - i;
511 | ^^^^^^^^^^^^^
2b03887a
FG
512
513error: arithmetic operation that can potentially result in unexpected side-effects
f25598a0 514 --> $DIR/arithmetic_side_effects.rs:341:5
2b03887a 515 |
f25598a0
FG
516LL | -i;
517 | ^^
518
519error: arithmetic operation that can potentially result in unexpected side-effects
520 --> $DIR/arithmetic_side_effects.rs:342:5
521 |
522LL | i >> 1;
523 | ^^^^^^
524
525error: arithmetic operation that can potentially result in unexpected side-effects
526 --> $DIR/arithmetic_side_effects.rs:343:5
527 |
528LL | i << 1;
529 | ^^^^^^
530
531error: arithmetic operation that can potentially result in unexpected side-effects
532 --> $DIR/arithmetic_side_effects.rs:352:5
533 |
534LL | i += 1;
535 | ^^^^^^
536
537error: arithmetic operation that can potentially result in unexpected side-effects
538 --> $DIR/arithmetic_side_effects.rs:353:5
539 |
540LL | i -= 1;
541 | ^^^^^^
542
543error: arithmetic operation that can potentially result in unexpected side-effects
544 --> $DIR/arithmetic_side_effects.rs:354:5
545 |
546LL | i *= 2;
547 | ^^^^^^
548
549error: arithmetic operation that can potentially result in unexpected side-effects
550 --> $DIR/arithmetic_side_effects.rs:356:5
551 |
552LL | i /= 0;
553 | ^^^^^^
554
555error: arithmetic operation that can potentially result in unexpected side-effects
556 --> $DIR/arithmetic_side_effects.rs:358:5
557 |
558LL | i /= var1;
559 | ^^^^^^^^^
560
561error: arithmetic operation that can potentially result in unexpected side-effects
562 --> $DIR/arithmetic_side_effects.rs:359:5
563 |
564LL | i /= var2;
565 | ^^^^^^^^^
566
567error: arithmetic operation that can potentially result in unexpected side-effects
568 --> $DIR/arithmetic_side_effects.rs:361:5
569 |
570LL | i %= 0;
571 | ^^^^^^
572
573error: arithmetic operation that can potentially result in unexpected side-effects
574 --> $DIR/arithmetic_side_effects.rs:363:5
575 |
576LL | i %= var1;
577 | ^^^^^^^^^
578
579error: arithmetic operation that can potentially result in unexpected side-effects
580 --> $DIR/arithmetic_side_effects.rs:364:5
581 |
582LL | i %= var2;
583 | ^^^^^^^^^
584
585error: arithmetic operation that can potentially result in unexpected side-effects
586 --> $DIR/arithmetic_side_effects.rs:365:5
587 |
588LL | i <<= 3;
589 | ^^^^^^^
590
591error: arithmetic operation that can potentially result in unexpected side-effects
592 --> $DIR/arithmetic_side_effects.rs:366:5
593 |
594LL | i >>= 2;
595 | ^^^^^^^
2b03887a 596
f25598a0 597error: aborting due to 99 previous errors
f2b60f7d 598