2016-08-17 04:36:04 -05:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
#![deny(useless_attribute)]
|
|
|
|
|
2017-02-08 07:58:07 -06:00
|
|
|
#[allow(dead_code)]
|
|
|
|
|
|
|
|
|
2016-08-17 04:36:04 -05:00
|
|
|
extern crate clippy_lints;
|
|
|
|
|
2016-08-19 10:31:14 -05:00
|
|
|
// don't lint on unused_import for `use` items
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use std::collections;
|
|
|
|
|
2016-12-01 15:36:35 -06:00
|
|
|
// don't lint on deprecated for `use` items
|
|
|
|
mod foo { #[deprecated] pub struct Bar; }
|
|
|
|
#[allow(deprecated)]
|
|
|
|
pub use foo::Bar;
|
|
|
|
|
2016-08-17 04:36:04 -05:00
|
|
|
fn main() {}
|