2018-10-06 11:18:06 -05:00
|
|
|
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
|
2018-10-11 05:16:22 -05:00
|
|
|
|
2017-09-18 05:47:33 -05:00
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
#![warn(clippy::useless_attribute)]
|
2016-08-17 04:36:04 -05:00
|
|
|
|
2018-09-15 02:56:03 -05:00
|
|
|
#[allow(dead_code)]
|
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(dead_code))]
|
2018-02-06 15:14:23 -06:00
|
|
|
#[cfg_attr(feature = "cargo-clippy",
|
2018-09-15 02:56:03 -05:00
|
|
|
allow(dead_code))]
|
2018-07-19 06:44:26 -05:00
|
|
|
#[allow(unused_imports)]
|
2018-09-15 02:56:03 -05:00
|
|
|
#[allow(unused_extern_crates)]
|
2018-07-19 06:44:26 -05:00
|
|
|
#[macro_use]
|
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() {}
|