mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
41 lines
1.3 KiB
Text
41 lines
1.3 KiB
Text
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:6: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:7: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:8: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:11: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:12:8
|
|
|
|
|
LL | if a < a - b {}
|
|
| ^^^^^^^^^
|
|
|
|
error: aborting due to 6 previous errors
|
|
|