rust/tests/ui/panicking_overflow_checks.stderr

42 lines
1.3 KiB
Plaintext
Raw Normal View History

error: you are trying to use classic C overflow conditions that will fail in Rust
--> tests/ui/panicking_overflow_checks.rs:5:8
|
2018-12-27 09:57:55 -06:00
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
|
2018-12-27 09:57:55 -06:00
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
|
2018-12-27 09:57:55 -06:00
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
|
2018-12-27 09:57:55 -06:00
LL | if b > a + b {}
| ^^^^^^^^^
2024-06-16 00:34:25 -05:00
error: you are trying to use classic C overflow conditions that will fail in Rust
--> tests/ui/panicking_overflow_checks.rs:11:8
|
2018-12-27 09:57:55 -06:00
LL | if a - b > a {}
| ^^^^^^^^^
2024-06-16 00:34:25 -05:00
error: you are trying to use classic C overflow conditions that will fail in Rust
--> tests/ui/panicking_overflow_checks.rs:12:8
|
2018-12-27 09:57:55 -06:00
LL | if a < a - b {}
| ^^^^^^^^^
2024-06-16 00:34:25 -05:00
error: aborting due to 6 previous errors
2018-01-16 10:06:27 -06:00