1
Fork 0

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

@ -1,10 +0,0 @@
#![feature(plugin, custom_attribute, stmt_expr_attributes)]
#![plugin(clippy)]
#![allow(unused_parens)]
fn main() {
let x: i32 = 42;
let _ = #[clippy(author)] (x & 0b1111 == 0); // suggest trailing_zeros
let _ = x & 0b1_1111 == 0; // suggest trailing_zeros
let _ = x & 0b1_1010 == 0; // do not lint
}