2020-08-11 13:43:21 +00:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2024-06-17 00:37:47 +00:00
|
|
|
--> tests/ui/panicking_overflow_checks.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
|
|
|
|
|
2024-06-17 00:37:47 +00:00
|
|
|
= note: `-D clippy::panicking-overflow-checks` implied by `-D warnings`
|
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::panicking_overflow_checks)]`
|
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
|
2024-06-17 00:37:47 +00:00
|
|
|
--> tests/ui/panicking_overflow_checks.rs:6: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
|
2024-06-17 00:37:47 +00:00
|
|
|
--> tests/ui/panicking_overflow_checks.rs:7: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
|
2024-06-17 00:37:47 +00:00
|
|
|
--> tests/ui/panicking_overflow_checks.rs:8: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
|
|
|
|
2024-06-16 05:34:25 +00:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2024-06-17 00:37:47 +00:00
|
|
|
--> tests/ui/panicking_overflow_checks.rs:11: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
|
|
|
|
2024-06-16 05:34:25 +00:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2024-06-17 00:37:47 +00:00
|
|
|
--> tests/ui/panicking_overflow_checks.rs:12: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
|
|
|
|
2024-06-16 05:34:25 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|