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

@ -0,0 +1,17 @@
#![feature(plugin)]
#![plugin(clippy)]
#![warn(useless_attribute)]
#[allow(dead_code)]
extern crate clippy_lints;
// don't lint on unused_import for `use` items
#[allow(unused_imports)]
use std::collections;
// don't lint on deprecated for `use` items
mod foo { #[deprecated] pub struct Bar; }
#[allow(deprecated)]
pub use foo::Bar;
fn main() {}