summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/overflow_check_conditional.stderr
blob: 92d1d8ef911efcad667698a23b39e761001c70a5 (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
error: you are trying to use classic C overflow conditions that will fail in Rust
  --> $DIR/overflow_check_conditional.rs:4:8
   |
LL |     if a + b < a {}
   |        ^^^^^^^^^
   |
   = note: `-D clippy::overflow-check-conditional` implied by `-D warnings`

error: you are trying to use classic C overflow conditions that will fail in Rust
  --> $DIR/overflow_check_conditional.rs:5:8
   |
LL |     if a > a + b {}
   |        ^^^^^^^^^

error: you are trying to use classic C overflow conditions that will fail in Rust
  --> $DIR/overflow_check_conditional.rs:6:8
   |
LL |     if a + b < b {}
   |        ^^^^^^^^^

error: you are trying to use classic C overflow conditions that will fail in Rust
  --> $DIR/overflow_check_conditional.rs:7:8
   |
LL |     if b > a + b {}
   |        ^^^^^^^^^

error: you are trying to use classic C underflow conditions that will fail in Rust
  --> $DIR/overflow_check_conditional.rs:8:8
   |
LL |     if a - b > b {}
   |        ^^^^^^^^^

error: you are trying to use classic C underflow conditions that will fail in Rust
  --> $DIR/overflow_check_conditional.rs:9:8
   |
LL |     if b < a - b {}
   |        ^^^^^^^^^

error: you are trying to use classic C underflow conditions that will fail in Rust
  --> $DIR/overflow_check_conditional.rs:10:8
   |
LL |     if a - b > a {}
   |        ^^^^^^^^^

error: you are trying to use classic C underflow conditions that will fail in Rust
  --> $DIR/overflow_check_conditional.rs:11:8
   |
LL |     if a < a - b {}
   |        ^^^^^^^^^

error: aborting due to 8 previous errors