Skip to content

Commit e68d68c

Browse files
authored
Merge pull request #260 from dtolnay/qualifications
Ignore unused_qualifications rustc lint in generated code
2 parents 62969d5 + 75879e8 commit e68d68c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/expand.rs

+2
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ pub fn expand(input: &mut Item, is_local: bool) {
125125
fn lint_suppress_with_body() -> Attribute {
126126
parse_quote! {
127127
#[allow(
128+
unused_qualifications,
128129
clippy::async_yields_async,
129130
clippy::diverging_sub_expression,
130131
clippy::let_unit_value,
@@ -140,6 +141,7 @@ fn lint_suppress_with_body() -> Attribute {
140141
fn lint_suppress_without_body() -> Attribute {
141142
parse_quote! {
142143
#[allow(
144+
unused_qualifications,
143145
clippy::type_complexity,
144146
clippy::type_repetition_in_bounds
145147
)]

tests/test.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
async_trait_nightly_testing,
33
feature(impl_trait_in_assoc_type, min_specialization)
44
)]
5-
#![deny(rust_2021_compatibility)]
5+
#![deny(rust_2021_compatibility, unused_qualifications)]
66
#![allow(
77
clippy::incompatible_msrv, // https://github.com/rust-lang/rust-clippy/issues/12257
88
clippy::let_underscore_untyped,
@@ -1384,6 +1384,7 @@ pub mod issue169 {
13841384
use async_trait::async_trait;
13851385

13861386
#[async_trait]
1387+
#[allow(unused_qualifications)]
13871388
pub trait Trait: ::core::marker::Sync {
13881389
async fn f(&self) {}
13891390
}

0 commit comments

Comments
 (0)