2017-05-17 07:19:44 -05:00
|
|
|
error: You are trying to use classic C overflow conditions that will fail in Rust.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:21:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
21 | 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
|
|
|
|
|
|
|
error: You are trying to use classic C overflow conditions that will fail in Rust.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:24:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
24 | if a > a + b {
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
error: You are trying to use classic C overflow conditions that will fail in Rust.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:27:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
27 | if a + b < b {
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
error: You are trying to use classic C overflow conditions that will fail in Rust.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:30:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
30 | if b > a + b {
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
error: You are trying to use classic C underflow conditions that will fail in Rust.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:33:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
33 | if a - b > b {
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
error: You are trying to use classic C underflow conditions that will fail in Rust.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:36:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
36 | if b < a - b {
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
error: You are trying to use classic C underflow conditions that will fail in Rust.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:39:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
39 | if a - b > a {
|
2017-12-07 04:20:48 -06:00
|
|
|
| ^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
error: You are trying to use classic C underflow conditions that will fail in Rust.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/overflow_check_conditional.rs:42:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
42 | 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
|
|
|
|
|