summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/arithmetic_side_effects.stderr
blob: 6c4c8bdec0f0589ded293437129264d1bb412166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error: arithmetic detected
  --> $DIR/arithmetic_side_effects.rs:50:21
   |
LL |     let mut _a = 1; _a += 1;
   |                     ^^^^^^^
   |
   = note: `-D clippy::arithmetic-side-effects` implied by `-D warnings`

error: arithmetic detected
  --> $DIR/arithmetic_side_effects.rs:52:26
   |
LL |     let mut _b = 1; _b = _b + 1;
   |                          ^^^^^^

error: arithmetic detected
  --> $DIR/arithmetic_side_effects.rs:54:26
   |
LL |     let mut _c = 1; _c = 1 + _c;
   |                          ^^^^^^

error: aborting due to 3 previous errors