]> git.lizzy.rs Git - rust.git/blob - tests/ui/useless_attribute.rs
Merge branch 'master' into fix-3514
[rust.git] / tests / ui / useless_attribute.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10 #![warn(clippy::useless_attribute)]
11
12 #[allow(dead_code)]
13 #[cfg_attr(feature = "cargo-clippy", allow(dead_code))]
14 #[rustfmt::skip]
15 #[cfg_attr(feature = "cargo-clippy",
16            allow(dead_code))]
17 #[allow(unused_imports)]
18 #[allow(unused_extern_crates)]
19 #[macro_use]
20 extern crate clippy_lints;
21
22 // don't lint on unused_import for `use` items
23 #[allow(unused_imports)]
24 use std::collections;
25
26 // don't lint on deprecated for `use` items
27 mod foo {
28     #[deprecated]
29     pub struct Bar;
30 }
31 #[allow(deprecated)]
32 pub use foo::Bar;
33
34 fn main() {}