diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-07-07 14:22:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-07 14:22:01 +0200 |
| commit | 510020ad4cfa1bd8a51dec638a8b39b3f546a7b9 (patch) | |
| tree | aed939b40941f2ce66bda8814c39ffea6dc83b8f /compiler/rustc_resolve | |
| parent | 56557c455567998cb808be5ea31218a12150ca6c (diff) | |
| parent | 9e0aab71a46692e4ddd455d7931cbb7336b9d732 (diff) | |
Rollup merge of #127308 - nnethercote:Attribute-cleanups, r=petrochenkov
Attribute cleanups More refactoring done while trying to fix the final remaining test failure for #124141. r? `@petrochenkov`
Diffstat (limited to 'compiler/rustc_resolve')
| -rw-r--r-- | compiler/rustc_resolve/src/late.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_resolve/src/late.rs b/compiler/rustc_resolve/src/late.rs index ad4e222f4de..1d37264f96a 100644 --- a/compiler/rustc_resolve/src/late.rs +++ b/compiler/rustc_resolve/src/late.rs @@ -1744,7 +1744,7 @@ impl<'a: 'ast, 'b, 'ast, 'tcx> LateResolutionVisitor<'a, 'b, 'ast, 'tcx> { ) { self.r.dcx().emit_err(errors::LendingIteratorReportError { lifetime: lifetime.ident.span, - ty: ty.span(), + ty: ty.span, }); } else { self.r.dcx().emit_err(errors::AnonymousLivetimeNonGatReportError { |
