forked from rust-lang/rust-clippy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add regression test for useless_attribute lint
- Loading branch information
Showing
3 changed files
with
77 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// run-rustfix | ||
// aux-build:proc_macro_derive.rs | ||
|
||
#![warn(clippy::useless_attribute)] | ||
#![warn(unreachable_pub)] | ||
#![feature(rustc_private)] | ||
|
||
#![allow(dead_code)] | ||
#![cfg_attr(feature = "cargo-clippy", allow(dead_code))] | ||
#[rustfmt::skip] | ||
#[allow(unused_imports)] | ||
#[allow(unused_extern_crates)] | ||
#[macro_use] | ||
extern crate rustc; | ||
|
||
#[macro_use] | ||
extern crate proc_macro_derive; | ||
|
||
// don't lint on unused_import for `use` items | ||
#[allow(unused_imports)] | ||
use std::collections; | ||
|
||
// don't lint on deprecated for `use` items | ||
mod foo { | ||
#[deprecated] | ||
pub struct Bar; | ||
} | ||
#[allow(deprecated)] | ||
pub use foo::Bar; | ||
|
||
// 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; | ||
|
||
// 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; | ||
} | ||
|
||
fn test_indented_attr() { | ||
#![allow(clippy::almost_swapped)] | ||
use std::collections::HashSet; | ||
|
||
let _ = HashSet::<u32>::default(); | ||
} | ||
|
||
fn main() { | ||
test_indented_attr(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,22 @@ | ||
error: useless lint attribute | ||
--> $DIR/useless_attribute.rs:7:1 | ||
--> $DIR/useless_attribute.rs:8:1 | ||
| | ||
LL | #[allow(dead_code)] | ||
| ^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![allow(dead_code)]` | ||
| | ||
= note: `-D clippy::useless-attribute` implied by `-D warnings` | ||
|
||
error: useless lint attribute | ||
--> $DIR/useless_attribute.rs:8:1 | ||
--> $DIR/useless_attribute.rs:9:1 | ||
| | ||
LL | #[cfg_attr(feature = "cargo-clippy", allow(dead_code))] | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![cfg_attr(feature = "cargo-clippy", allow(dead_code)` | ||
|
||
error: aborting due to 2 previous errors | ||
error: useless lint attribute | ||
--> $DIR/useless_attribute.rs:49:5 | ||
| | ||
LL | #[allow(clippy::almost_swapped)] | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![allow(clippy::almost_swapped)]` | ||
|
||
error: aborting due to 3 previous errors | ||
|