rust/tests/ui/overflow_check_conditional.stderr

53 lines
1.5 KiB
Text
Raw Normal View History

error: You are trying to use classic C overflow conditions that will fail in Rust.
2018-12-10 06:27:19 +01:00
--> $DIR/overflow_check_conditional.rs:17:8
|
2018-12-10 06:27:19 +01:00
17 | if a + b < a {}
| ^^^^^^^^^
|
= note: `-D clippy::overflow-check-conditional` implied by `-D warnings`
error: You are trying to use classic C overflow conditions that will fail in Rust.
2018-12-10 06:27:19 +01:00
--> $DIR/overflow_check_conditional.rs:18:8
|
2018-12-10 06:27:19 +01:00
18 | if a > a + b {}
| ^^^^^^^^^
error: You are trying to use classic C overflow conditions that will fail in Rust.
2018-12-10 06:27:19 +01:00
--> $DIR/overflow_check_conditional.rs:19:8
|
2018-12-10 06:27:19 +01:00
19 | if a + b < b {}
| ^^^^^^^^^
error: You are trying to use classic C overflow conditions that will fail in Rust.
2018-12-10 06:27:19 +01:00
--> $DIR/overflow_check_conditional.rs:20:8
|
2018-12-10 06:27:19 +01:00
20 | if b > a + b {}
| ^^^^^^^^^
error: You are trying to use classic C underflow conditions that will fail in Rust.
2018-12-10 06:27:19 +01:00
--> $DIR/overflow_check_conditional.rs:21:8
|
2018-12-10 06:27:19 +01:00
21 | if a - b > b {}
| ^^^^^^^^^
error: You are trying to use classic C underflow conditions that will fail in Rust.
2018-12-10 06:27:19 +01:00
--> $DIR/overflow_check_conditional.rs:22:8
|
2018-12-10 06:27:19 +01:00
22 | if b < a - b {}
| ^^^^^^^^^
error: You are trying to use classic C underflow conditions that will fail in Rust.
2018-12-10 06:27:19 +01:00
--> $DIR/overflow_check_conditional.rs:23:8
|
2018-12-10 06:27:19 +01:00
23 | if a - b > a {}
| ^^^^^^^^^
error: You are trying to use classic C underflow conditions that will fail in Rust.
2018-12-10 06:27:19 +01:00
--> $DIR/overflow_check_conditional.rs:24:8
|
2018-12-10 06:27:19 +01:00
24 | if a < a - b {}
| ^^^^^^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 8 previous errors