Make most tests an example
so we can run them one by one
This commit is contained in:
parent
ed909cadd6
commit
4465bc3e3f
284 changed files with 4055 additions and 3945 deletions
|
@ -1,61 +0,0 @@
|
|||
#![feature(plugin)]
|
||||
#![plugin(clippy)]
|
||||
|
||||
#![allow(many_single_char_names)]
|
||||
#![deny(overflow_check_conditional)]
|
||||
|
||||
fn main() {
|
||||
let a: u32 = 1;
|
||||
let b: u32 = 2;
|
||||
let c: u32 = 3;
|
||||
if a + b < a {
|
||||
|
||||
}
|
||||
if a > a + b {
|
||||
|
||||
}
|
||||
if a + b < b {
|
||||
|
||||
}
|
||||
if b > a + b {
|
||||
|
||||
}
|
||||
if a - b > b {
|
||||
|
||||
}
|
||||
if b < a - b {
|
||||
|
||||
}
|
||||
if a - b > a {
|
||||
|
||||
}
|
||||
if a < a - b {
|
||||
|
||||
}
|
||||
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 {
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue