1
Fork 0

Ignore paths from expansion in unused_qualifications

This commit is contained in:
Alex Macleod 2024-03-15 14:00:08 +00:00
parent c86f3ac24f
commit a8452461dc
3 changed files with 5 additions and 1 deletions

View file

@ -4672,7 +4672,9 @@ impl<'a: 'ast, 'b, 'ast, 'tcx> LateResolutionVisitor<'a, 'b, 'ast, 'tcx> {
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;
}