2020-07-23 17:18:34 -05:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2021-09-14 11:48:30 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:7:8
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if a + b < a {}
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::overflow-check-conditional` implied by `-D warnings`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2020-07-23 17:18:34 -05:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2021-09-14 11:48:30 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:8:8
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if a > a + b {}
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2020-07-23 17:18:34 -05:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2021-09-14 11:48:30 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:9:8
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if a + b < b {}
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2020-07-23 17:18:34 -05:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2021-09-14 11:48:30 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:10:8
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if b > a + b {}
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2020-07-23 17:18:34 -05:00
|
|
|
error: you are trying to use classic C underflow conditions that will fail in Rust
|
2021-09-14 11:48:30 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:11:8
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if a - b > b {}
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2020-07-23 17:18:34 -05:00
|
|
|
error: you are trying to use classic C underflow conditions that will fail in Rust
|
2021-09-14 11:48:30 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:12:8
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if b < a - b {}
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2020-07-23 17:18:34 -05:00
|
|
|
error: you are trying to use classic C underflow conditions that will fail in Rust
|
2021-09-14 11:48:30 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:13:8
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if a - b > a {}
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2020-07-23 17:18:34 -05:00
|
|
|
error: you are trying to use classic C underflow conditions that will fail in Rust
|
2021-09-14 11:48:30 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:14:8
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if a < a - b {}
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|