Ignore paths from expansion in unused_qualifications
This commit is contained in:
parent
c86f3ac24f
commit
a8452461dc
@ -4672,7 +4672,9 @@ fn lint_unused_qualifications(&mut self, path: &[Segment], ns: Namespace, finali
|
||||
return;
|
||||
}
|
||||
|
||||
if path.iter().any(|seg| seg.ident.span.from_expansion()) {
|
||||
if finalize.path_span.from_expansion()
|
||||
|| path.iter().any(|seg| seg.ident.span.from_expansion())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -35,6 +35,7 @@ fn main() {
|
||||
foo::bar();
|
||||
foo::$b(); // issue #96698
|
||||
$a::bar();
|
||||
$a::$b();
|
||||
} }
|
||||
m!(foo, bar);
|
||||
}
|
||||
|
@ -35,6 +35,7 @@ macro_rules! m { ($a:ident, $b:ident) => {
|
||||
foo::bar();
|
||||
foo::$b(); // issue #96698
|
||||
$a::bar();
|
||||
$a::$b();
|
||||
} }
|
||||
m!(foo, bar);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user