| error: you are trying to use classic C overflow conditions that will fail in Rust |
| --> tests/ui/panicking_overflow_checks.rs:5:8 |
| | |
| LL | if a + b < a {} |
| | ^^^^^^^^^ |
| | |
| = note: `-D clippy::panicking-overflow-checks` implied by `-D warnings` |
| = help: to override `-D warnings` add `#[allow(clippy::panicking_overflow_checks)]` |
| |
| error: you are trying to use classic C overflow conditions that will fail in Rust |
| --> tests/ui/panicking_overflow_checks.rs:7:8 |
| | |
| LL | if a > a + b {} |
| | ^^^^^^^^^ |
| |
| error: you are trying to use classic C overflow conditions that will fail in Rust |
| --> tests/ui/panicking_overflow_checks.rs:9:8 |
| | |
| LL | if a + b < b {} |
| | ^^^^^^^^^ |
| |
| error: you are trying to use classic C overflow conditions that will fail in Rust |
| --> tests/ui/panicking_overflow_checks.rs:11:8 |
| | |
| LL | if b > a + b {} |
| | ^^^^^^^^^ |
| |
| error: you are trying to use classic C overflow conditions that will fail in Rust |
| --> tests/ui/panicking_overflow_checks.rs:15:8 |
| | |
| LL | if a - b > a {} |
| | ^^^^^^^^^ |
| |
| error: you are trying to use classic C overflow conditions that will fail in Rust |
| --> tests/ui/panicking_overflow_checks.rs:17:8 |
| | |
| LL | if a < a - b {} |
| | ^^^^^^^^^ |
| |
| error: aborting due to 6 previous errors |
| |