Skip to content

Commit 60dca87

Browse files
authored
Rollup merge of #117592 - thomcc:env-span-wrong, r=davidtwco
Use the correct span when emitting the `env!` result The span used for the `env!` resut changed in 1.73, due to 75df62d (from #114014). This prevents [a lint in `plrustc`](https://github.com/tcdi/plrust/blob/main/plrustc/plrustc/src/lints/builtin_macros.rs#L54-L60)[^1] from working well, because the resulting span is not inside the region where the lint is `#[deny()]`ed. [^1]: Perhaps worth noting that the `env_macro` diagnostic item comes from [the std fork used with PL/Rust](https://github.com/tcdi/postgrestd/blob/rust-1.73.0/library/core/src/macros/mod.rs#L944). Unfortunately, I have no idea how to write a test for this since I don't think we can have a custom lint in a test. A suggestion was made to use a custom proc macro for it, but that seems pretty involved (frankly, I might not have time to do it). r? ``@davidtwco`` (since they're the author of the PR with the regression) P.S. We generally try to avoid bothering upstream about PL/Rust-specific stuff (we don't want to nag), but this seems like an actual bug, since the other similar macros, such as `option_env` use the other span (and are lintable as a result).
2 parents f9b6446 + 86fca87 commit 60dca87

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_builtin_macros/src

1 file changed

+1
-1
lines changed

compiler/rustc_builtin_macros/src/env.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ pub fn expand_env<'cx>(
108108

109109
return DummyResult::any(sp);
110110
}
111-
Some(value) => cx.expr_str(sp, value),
111+
Some(value) => cx.expr_str(span, value),
112112
};
113113
MacEager::expr(e)
114114
}

0 commit comments

Comments
 (0)