2017-09-18 12:47:33 +02:00
|
|
|
|
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
#![warn(useless_attribute)]
|
2016-08-17 11:36:04 +02:00
|
|
|
|
2017-08-28 18:16:16 +02:00
|
|
|
#[allow(dead_code, unused_extern_crates)]
|
2018-02-06 22:14:23 +01:00
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(dead_code, unused_extern_crates))]
|
|
|
|
#[cfg_attr(feature = "cargo-clippy",
|
|
|
|
allow(dead_code, unused_extern_crates))]
|
2016-08-17 11:36:04 +02:00
|
|
|
extern crate clippy_lints;
|
|
|
|
|
2016-08-19 17:31:14 +02:00
|
|
|
// don't lint on unused_import for `use` items
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use std::collections;
|
|
|
|
|
2016-12-01 22:36:35 +01:00
|
|
|
// don't lint on deprecated for `use` items
|
|
|
|
mod foo { #[deprecated] pub struct Bar; }
|
|
|
|
#[allow(deprecated)]
|
|
|
|
pub use foo::Bar;
|
|
|
|
|
2016-08-17 11:36:04 +02:00
|
|
|
fn main() {}
|