1
Fork 0

Make most tests an example so we can run them one by one

This commit is contained in:
Oliver Schneider 2017-05-17 14:19:44 +02:00
parent ed909cadd6
commit 4465bc3e3f
284 changed files with 4055 additions and 3945 deletions

View file

@ -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 {
}
}