summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/arithmetic_side_effects_allowed/arithmetic_side_effects_allowed.stderr
blob: ad89534aa1b042c808de5d69622e32c466c288e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
error: arithmetic operation that can potentially result in unexpected side-effects
  --> $DIR/arithmetic_side_effects_allowed.rs:68:13
   |
LL |     let _ = Baz + Baz;
   |             ^^^^^^^^^
   |
   = note: `-D clippy::arithmetic-side-effects` implied by `-D warnings`

error: arithmetic operation that can potentially result in unexpected side-effects
  --> $DIR/arithmetic_side_effects_allowed.rs:79:13
   |
LL |     let _ = 1i32 + Baz;
   |             ^^^^^^^^^^

error: arithmetic operation that can potentially result in unexpected side-effects
  --> $DIR/arithmetic_side_effects_allowed.rs:82:13
   |
LL |     let _ = 1i64 + Foo;
   |             ^^^^^^^^^^

error: arithmetic operation that can potentially result in unexpected side-effects
  --> $DIR/arithmetic_side_effects_allowed.rs:86:13
   |
LL |     let _ = 1i64 + Baz;
   |             ^^^^^^^^^^

error: arithmetic operation that can potentially result in unexpected side-effects
  --> $DIR/arithmetic_side_effects_allowed.rs:97:13
   |
LL |     let _ = Baz + 1i32;
   |             ^^^^^^^^^^

error: arithmetic operation that can potentially result in unexpected side-effects
  --> $DIR/arithmetic_side_effects_allowed.rs:100:13
   |
LL |     let _ = Foo + 1i64;
   |             ^^^^^^^^^^

error: arithmetic operation that can potentially result in unexpected side-effects
  --> $DIR/arithmetic_side_effects_allowed.rs:104:13
   |
LL |     let _ = Baz + 1i64;
   |             ^^^^^^^^^^

error: arithmetic operation that can potentially result in unexpected side-effects
  --> $DIR/arithmetic_side_effects_allowed.rs:113:13
   |
LL |     let _ = -Bar;
   |             ^^^^

error: arithmetic operation that can potentially result in unexpected side-effects
  --> $DIR/arithmetic_side_effects_allowed.rs:115:13
   |
LL |     let _ = -Baz;
   |             ^^^^

error: aborting due to 9 previous errors