2019-04-09 21:19:11 +00:00
|
|
|
// aux-build:proc_macro_derive.rs
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::useless_attribute)]
|
2019-05-17 10:42:43 +00:00
|
|
|
#![warn(unreachable_pub)]
|
2019-11-06 18:36:04 +00:00
|
|
|
#![feature(rustc_private)]
|
2016-08-17 09:36:04 +00:00
|
|
|
|
2018-09-15 07:56:03 +00:00
|
|
|
#[allow(dead_code)]
|
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(dead_code))]
|
2018-12-10 23:59:59 +00:00
|
|
|
#[rustfmt::skip]
|
2018-07-19 11:44:26 +00:00
|
|
|
#[allow(unused_imports)]
|
2018-09-15 07:56:03 +00:00
|
|
|
#[allow(unused_extern_crates)]
|
2018-07-19 11:44:26 +00:00
|
|
|
#[macro_use]
|
2019-11-06 18:36:04 +00:00
|
|
|
extern crate rustc;
|
2016-08-17 09:36:04 +00:00
|
|
|
|
2019-04-09 21:19:11 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate proc_macro_derive;
|
|
|
|
|
2016-08-19 15:31:14 +00:00
|
|
|
// don't lint on unused_import for `use` items
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use std::collections;
|
|
|
|
|
2016-12-01 21:36:35 +00:00
|
|
|
// don't lint on deprecated for `use` items
|
2018-12-09 22:26:16 +00:00
|
|
|
mod foo {
|
|
|
|
#[deprecated]
|
|
|
|
pub struct Bar;
|
|
|
|
}
|
2016-12-01 21:36:35 +00:00
|
|
|
#[allow(deprecated)]
|
|
|
|
pub use foo::Bar;
|
|
|
|
|
2019-04-09 21:19:11 +00:00
|
|
|
// This should not trigger the lint. There's lint level definitions inside the external derive
|
|
|
|
// that would trigger the useless_attribute lint.
|
|
|
|
#[derive(DeriveSomething)]
|
|
|
|
struct Baz;
|
|
|
|
|
2019-05-17 10:42:43 +00:00
|
|
|
// don't lint on unreachable_pub for `use` items
|
|
|
|
mod a {
|
|
|
|
mod b {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[allow(unreachable_pub)]
|
|
|
|
pub struct C {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(unreachable_pub)]
|
|
|
|
pub use self::b::C;
|
|
|
|
}
|
|
|
|
|
2016-08-17 09:36:04 +00:00
|
|
|
fn main() {}
|