2020-01-08 10:31:27 -06:00
|
|
|
// run-rustfix
|
2019-04-09 16:19:11 -05:00
|
|
|
// aux-build:proc_macro_derive.rs
|
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
#![warn(clippy::useless_attribute)]
|
2019-05-17 05:42:43 -05:00
|
|
|
#![warn(unreachable_pub)]
|
2019-11-06 12:36:04 -06:00
|
|
|
#![feature(rustc_private)]
|
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-12-10 17:59:59 -06:00
|
|
|
#[rustfmt::skip]
|
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]
|
2020-03-30 04:02:14 -05:00
|
|
|
extern crate rustc_middle;
|
2016-08-17 04:36:04 -05:00
|
|
|
|
2019-04-09 16:19:11 -05:00
|
|
|
#[macro_use]
|
|
|
|
extern crate proc_macro_derive;
|
|
|
|
|
2016-08-19 10:31:14 -05:00
|
|
|
// don't lint on unused_import for `use` items
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use std::collections;
|
|
|
|
|
2020-03-02 03:22:05 -06:00
|
|
|
// don't lint on unused for `use` items
|
|
|
|
#[allow(unused)]
|
|
|
|
use std::option;
|
|
|
|
|
2016-12-01 15:36:35 -06:00
|
|
|
// don't lint on deprecated for `use` items
|
2018-12-09 16:26:16 -06:00
|
|
|
mod foo {
|
|
|
|
#[deprecated]
|
|
|
|
pub struct Bar;
|
|
|
|
}
|
2016-12-01 15:36:35 -06:00
|
|
|
#[allow(deprecated)]
|
|
|
|
pub use foo::Bar;
|
|
|
|
|
2019-04-09 16:19:11 -05: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 05:42:43 -05:00
|
|
|
// don't lint on unreachable_pub for `use` items
|
|
|
|
mod a {
|
|
|
|
mod b {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[allow(unreachable_pub)]
|
2022-03-27 07:41:09 -05:00
|
|
|
pub struct C;
|
2019-05-17 05:42:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(unreachable_pub)]
|
|
|
|
pub use self::b::C;
|
|
|
|
}
|
|
|
|
|
2020-08-31 22:09:32 -05:00
|
|
|
// don't lint on clippy::wildcard_imports for `use` items
|
|
|
|
#[allow(clippy::wildcard_imports)]
|
|
|
|
pub use std::io::prelude::*;
|
|
|
|
|
|
|
|
// don't lint on clippy::enum_glob_use for `use` items
|
|
|
|
#[allow(clippy::enum_glob_use)]
|
|
|
|
pub use std::cmp::Ordering::*;
|
|
|
|
|
2022-04-23 06:23:18 -05:00
|
|
|
// don't lint on clippy::redundant_pub_crate
|
|
|
|
mod c {
|
|
|
|
#[allow(clippy::redundant_pub_crate)]
|
|
|
|
pub(crate) struct S;
|
|
|
|
}
|
|
|
|
|
2020-01-08 10:31:27 -06:00
|
|
|
fn test_indented_attr() {
|
|
|
|
#[allow(clippy::almost_swapped)]
|
|
|
|
use std::collections::HashSet;
|
|
|
|
|
|
|
|
let _ = HashSet::<u32>::default();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
test_indented_attr();
|
|
|
|
}
|