2020-08-11 08:43:21 -05:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2024-06-16 19:37:47 -05:00
|
|
|
--> tests/ui/panicking_overflow_checks.rs:5: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
|
|
|
|
|
2024-06-16 19:37:47 -05: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 07:19:44 -05:00
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2024-06-16 19:37:47 -05:00
|
|
|
--> tests/ui/panicking_overflow_checks.rs:6: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-08-11 08:43:21 -05:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2024-06-16 19:37:47 -05:00
|
|
|
--> tests/ui/panicking_overflow_checks.rs:7: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-08-11 08:43:21 -05:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2024-06-16 19:37:47 -05:00
|
|
|
--> tests/ui/panicking_overflow_checks.rs:8: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
|
|
|
|
2024-06-16 00:34:25 -05:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2024-06-16 19:37:47 -05:00
|
|
|
--> tests/ui/panicking_overflow_checks.rs:11: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
|
|
|
|
2024-06-16 00:34:25 -05:00
|
|
|
error: you are trying to use classic C overflow conditions that will fail in Rust
|
2024-06-16 19:37:47 -05:00
|
|
|
--> tests/ui/panicking_overflow_checks.rs:12: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
|
|
|
|
2024-06-16 00:34:25 -05:00
|
|
|
error: aborting due to 6 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|