Move all our tests back to ui tests

This commit is contained in:
Oliver Schneider
2017-08-01 17:54:21 +02:00
parent 5595027018
commit 74c776585c
397 changed files with 1527 additions and 1679 deletions

View File

@@ -0,0 +1,61 @@
#![feature(plugin)]
#![plugin(clippy)]
#![allow(many_single_char_names)]
#![warn(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 {
}
}