summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/arithmetic_side_effects_allowed/arithmetic_side_effects_allowed.stderr
blob: 5e8d26e07413886468c951761c8f75d4a2998a6a (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
59
error: arithmetic operation that can potentially result in unexpected side-effects
  --> $DIR/arithmetic_side_effects_allowed.rs:69:13
   |
LL |     let _ = Baz + Baz;
   |             ^^^^^^^^^
   |
   = note: `-D clippy::arithmetic-side-effects` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::arithmetic_side_effects)]`

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

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

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

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

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

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

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

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

error: aborting due to 9 previous errors