rust/tests/compile-fail/overflow_check_conditional.rs

38 lines
670 B
Rust
Raw Normal View History

2016-03-06 09:01:17 -06:00
#![feature(plugin)]
#![plugin(clippy)]
#![deny(overflow_check_conditional)]
fn main() {
let a: u32 = 1;
let b: u32 = 2;
let c: u32 = 3;
if a + b < a { //~ERROR You are trying to use classic C overflow conditons that will fail in Rust.
}
if a + b < b { //~ERROR You are trying to use classic C overflow conditons that will fail in Rust.
2016-03-07 15:27:45 -06:00
}
if a - b > b { //~ERROR You are trying to use classic C underflow conditons that will fail in Rust.
}
if a - b > a { //~ERROR You are trying to use classic C underflow conditons that will fail in Rust.
2016-03-06 09:01:17 -06:00
}
if a + b < c {
2016-03-07 15:27:45 -06:00
}
if a - b < c {
2016-03-06 09:01:17 -06:00
}
let i = 1.1;
let j = 2.2;
if i + j < i {
2016-03-07 15:27:45 -06:00
}
if i - j < i {
2016-03-06 09:01:17 -06:00
}
}