summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/overflow_check_conditional.stderr
blob: b3cab8a21098387b98febdfab1b31eab84e71d55 (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
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 + b < a {}
   |        ^^^^^^^^^
   |
   = note: `-D clippy::overflow-check-conditional` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::overflow_check_conditional)]`

error: you are trying to use classic C overflow conditions that will fail in Rust
  --> $DIR/overflow_check_conditional.rs:8: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:10: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:12: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:14: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:16: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:18: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:20:8
   |
LL |     if a < a - b {}
   |        ^^^^^^^^^

error: aborting due to 8 previous errors