2017-05-17 12:19:44 +00:00
|
|
|
error: You are trying to use classic C overflow conditions that will fail in Rust.
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:11:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2017-09-14 04:18:34 +00:00
|
|
|
11 | if a + b < a {
|
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
|
= note: `-D overflow-check-conditional` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: You are trying to use classic C overflow conditions that will fail in Rust.
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:14:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2017-09-14 04:18:34 +00:00
|
|
|
14 | if a > a + b {
|
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
error: You are trying to use classic C overflow conditions that will fail in Rust.
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:17:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2017-09-14 04:18:34 +00:00
|
|
|
17 | if a + b < b {
|
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
error: You are trying to use classic C overflow conditions that will fail in Rust.
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:20:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2017-09-14 04:18:34 +00:00
|
|
|
20 | if b > a + b {
|
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
error: You are trying to use classic C underflow conditions that will fail in Rust.
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:23:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2017-09-14 04:18:34 +00:00
|
|
|
23 | if a - b > b {
|
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
error: You are trying to use classic C underflow conditions that will fail in Rust.
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:26:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2017-09-14 04:18:34 +00:00
|
|
|
26 | if b < a - b {
|
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
error: You are trying to use classic C underflow conditions that will fail in Rust.
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:29:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2017-09-14 04:18:34 +00:00
|
|
|
29 | if a - b > a {
|
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
error: You are trying to use classic C underflow conditions that will fail in Rust.
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/overflow_check_conditional.rs:32:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2017-09-14 04:18:34 +00:00
|
|
|
32 | if a < a - b {
|
|
|
|
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|