diff options
| author | Eric Huss <eric@huss.org> | 2024-11-15 10:06:53 -0800 |
|---|---|---|
| committer | Eric Huss <eric@huss.org> | 2024-11-15 10:06:53 -0800 |
| commit | 03e2828e8876e9c2d2ec9238d9cdce82e7b93798 (patch) | |
| tree | 8cce42e5ac8e5c3e37207e9c497acf25fcd4ed0e /compiler/rustc_ast_lowering/src/lib.rs | |
| parent | d163541022248c12f166a2606cb3295986540318 (diff) | |
| download | rust-03e2828e8876e9c2d2ec9238d9cdce82e7b93798.tar.gz rust-03e2828e8876e9c2d2ec9238d9cdce82e7b93798.zip | |
Fix span edition for 2024 RPIT coming from an external macro
This fixes a problem where code generated by an external macro with an RPIT would end up using the call-site edition instead of the macro's edition for the RPIT. When used from a 2024 crate, this caused the code to change behavior to the 2024 capturing rules, which we don't want. This was caused by the impl-trait lowering code would replace the span with one marked with `DesugaringKind::OpaqueTy` desugaring. However, it was also overriding the edition of the span with the edition of the local crate. Instead it should be using the edition of the span itself. Fixes https://github.com/rust-lang/rust/issues/132917
Diffstat (limited to 'compiler/rustc_ast_lowering/src/lib.rs')
| -rw-r--r-- | compiler/rustc_ast_lowering/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_ast_lowering/src/lib.rs b/compiler/rustc_ast_lowering/src/lib.rs index 5a0e9e8aec0..d53280751fc 100644 --- a/compiler/rustc_ast_lowering/src/lib.rs +++ b/compiler/rustc_ast_lowering/src/lib.rs @@ -738,7 +738,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> { allow_internal_unstable: Option<Lrc<[Symbol]>>, ) -> Span { self.tcx.with_stable_hashing_context(|hcx| { - span.mark_with_reason(allow_internal_unstable, reason, self.tcx.sess.edition(), hcx) + span.mark_with_reason(allow_internal_unstable, reason, span.edition(), hcx) }) } |
