2020-08-11 13:43:21 +00:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2023-07-02 12:35:19 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:5:8
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if a + b < a {}
|
2017-12-07 10:20:48 +00:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::overflow-check-conditional` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::overflow_check_conditional)]`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:8:8
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if a > a + b {}
|
2017-12-07 10:20:48 +00:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:10:8
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if a + b < b {}
|
2017-12-07 10:20:48 +00:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:12:8
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if b > a + b {}
|
2017-12-07 10:20:48 +00:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: you are trying to use classic C underflow conditions that will fail in Rust
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:14:8
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if a - b > b {}
|
2017-12-07 10:20:48 +00:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: you are trying to use classic C underflow conditions that will fail in Rust
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:16:8
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if b < a - b {}
|
2017-12-07 10:20:48 +00:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: you are trying to use classic C underflow conditions that will fail in Rust
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:18:8
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if a - b > a {}
|
2017-12-07 10:20:48 +00:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: you are trying to use classic C underflow conditions that will fail in Rust
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:20:8
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if a < a - b {}
|
2017-12-07 10:20:48 +00:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|