rust-clippy/tests/ui/overflow_check_conditional.rs

37 lines
1.3 KiB
Rust
Raw Normal View History

2018-07-28 15:34:52 +00:00
#![warn(clippy::overflow_check_conditional)]
2023-06-10 11:43:30 +00:00
#![allow(clippy::needless_if)]
2016-03-06 15:01:17 +00:00
2023-03-07 17:51:48 +00:00
fn test(a: u32, b: u32, c: u32) {
2018-12-09 22:26:16 +00:00
if a + b < a {}
//~^ ERROR: you are trying to use classic C overflow conditions that will fail in Rust
//~| NOTE: `-D clippy::overflow-check-conditional` implied by `-D warnings`
2018-12-09 22:26:16 +00:00
if a > a + b {}
//~^ ERROR: you are trying to use classic C overflow conditions that will fail in Rust
2018-12-09 22:26:16 +00:00
if a + b < b {}
//~^ ERROR: you are trying to use classic C overflow conditions that will fail in Rust
2018-12-09 22:26:16 +00:00
if b > a + b {}
//~^ ERROR: you are trying to use classic C overflow conditions that will fail in Rust
2018-12-09 22:26:16 +00:00
if a - b > b {}
//~^ ERROR: you are trying to use classic C underflow conditions that will fail in Rus
2018-12-09 22:26:16 +00:00
if b < a - b {}
//~^ ERROR: you are trying to use classic C underflow conditions that will fail in Rus
2018-12-09 22:26:16 +00:00
if a - b > a {}
//~^ ERROR: you are trying to use classic C underflow conditions that will fail in Rus
2018-12-09 22:26:16 +00:00
if a < a - b {}
//~^ ERROR: you are trying to use classic C underflow conditions that will fail in Rus
2018-12-09 22:26:16 +00:00
if a + b < c {}
if c > a + b {}
if a - b < c {}
if c > a - b {}
let i = 1.1;
let j = 2.2;
if i + j < i {}
if i - j < i {}
if i > i + j {}
if i - j < i {}
2016-03-06 15:01:17 +00:00
}
2023-03-07 17:51:48 +00:00
fn main() {
test(1, 2, 3)
}