]> git.lizzy.rs Git - rust.git/blob - tests/ui/useless_attribute.rs
Merge pull request #3265 from mikerite/fix-export
[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
11 #![feature(tool_lints)]
12
13 #![warn(clippy::useless_attribute)]
14
15 #[allow(dead_code)]
16 #[cfg_attr(feature = "cargo-clippy", allow(dead_code))]
17 #[cfg_attr(feature = "cargo-clippy",
18            allow(dead_code))]
19 #[allow(unused_imports)]
20 #[allow(unused_extern_crates)]
21 #[macro_use]
22 extern crate clippy_lints;
23
24 // don't lint on unused_import for `use` items
25 #[allow(unused_imports)]
26 use std::collections;
27
28 // don't lint on deprecated for `use` items
29 mod foo { #[deprecated] pub struct Bar; }
30 #[allow(deprecated)]
31 pub use foo::Bar;
32
33 fn main() {}