File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ pub fn expand(input: &mut Item, is_local: bool) {
125
125
fn lint_suppress_with_body ( ) -> Attribute {
126
126
parse_quote ! {
127
127
#[ allow(
128
+ unused_qualifications,
128
129
clippy:: async_yields_async,
129
130
clippy:: diverging_sub_expression,
130
131
clippy:: let_unit_value,
@@ -140,6 +141,7 @@ fn lint_suppress_with_body() -> Attribute {
140
141
fn lint_suppress_without_body ( ) -> Attribute {
141
142
parse_quote ! {
142
143
#[ allow(
144
+ unused_qualifications,
143
145
clippy:: type_complexity,
144
146
clippy:: type_repetition_in_bounds
145
147
) ]
Original file line number Diff line number Diff line change 2
2
async_trait_nightly_testing,
3
3
feature( impl_trait_in_assoc_type, min_specialization)
4
4
) ]
5
- #![ deny( rust_2021_compatibility) ]
5
+ #![ deny( rust_2021_compatibility, unused_qualifications ) ]
6
6
#![ allow(
7
7
clippy:: incompatible_msrv, // https://github.com/rust-lang/rust-clippy/issues/12257
8
8
clippy:: let_underscore_untyped,
@@ -1384,6 +1384,7 @@ pub mod issue169 {
1384
1384
use async_trait:: async_trait;
1385
1385
1386
1386
#[ async_trait]
1387
+ #[ allow( unused_qualifications) ]
1387
1388
pub trait Trait : :: core:: marker:: Sync {
1388
1389
async fn f ( & self ) { }
1389
1390
}
You can’t perform that action at this time.
0 commit comments