Skip to content

Commit c981a57

Browse files
JohnTitorehuss
authored andcommitted
Rollup merge of rust-lang#88996 - Aaron1011:trailing-macro-semi, r=petrochenkov
Fix linting when trailing macro expands to a trailing semi When a macro is used in the trailing expression position of a block (e.g. `fn foo() { my_macro!() }`), we currently parse it as an expression, rather than a statement. As a result, we ended up using the `NodeId` of the containing statement as our `lint_node_id`, even though we don't normally do this for macro calls. If such a macro expands to an expression with a `#[cfg]` attribute, then the trailing statement can get removed entirely. This lead to an ICE, since we were usng the `NodeId` of the expression to emit a lint. Ths commit makes us skip updating `lint_node_id` when handling a macro in trailing expression position. This will cause us to lint at the closest parent of the macro call.
1 parent b893d56 commit c981a57

File tree

3 files changed

+43
-6
lines changed

3 files changed

+43
-6
lines changed

compiler/rustc_expand/src/expand.rs

+9-6
Original file line numberDiff line numberDiff line change
@@ -1373,14 +1373,17 @@ impl<'a, 'b> MutVisitor for InvocationCollector<'a, 'b> {
13731373
// `SEMICOLON_IN_EXPRESSIONS_FROM_MACROS` lint if needed.
13741374
// See #78991 for an investigation of treating macros in this position
13751375
// as statements, rather than expressions, during parsing.
1376-
if let StmtKind::Expr(expr) = &stmt.kind {
1377-
if matches!(**expr, ast::Expr { kind: ast::ExprKind::MacCall(..), .. }) {
1376+
let res = match &stmt.kind {
1377+
StmtKind::Expr(expr)
1378+
if matches!(**expr, ast::Expr { kind: ast::ExprKind::MacCall(..), .. }) =>
1379+
{
13781380
self.cx.current_expansion.is_trailing_mac = true;
1381+
// Don't use `assign_id` for this statement - it may get removed
1382+
// entirely due to a `#[cfg]` on the contained expression
1383+
noop_flat_map_stmt(stmt, self)
13791384
}
1380-
}
1381-
1382-
let res = assign_id!(self, &mut stmt.id, || noop_flat_map_stmt(stmt, self));
1383-
1385+
_ => assign_id!(self, &mut stmt.id, || noop_flat_map_stmt(stmt, self)),
1386+
};
13841387
self.cx.current_expansion.is_trailing_mac = false;
13851388
res
13861389
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// check-pass
2+
//
3+
// Ensures that we properly lint
4+
// a removed 'expression' resulting from a macro
5+
// in trailing expression position
6+
7+
macro_rules! expand_it {
8+
() => {
9+
#[cfg(FALSE)] 25; //~ WARN trailing semicolon in macro
10+
//~| WARN this was previously
11+
}
12+
}
13+
14+
fn main() {
15+
expand_it!()
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
warning: trailing semicolon in macro used in expression position
2+
--> $DIR/lint-trailing-macro-call.rs:9:25
3+
|
4+
LL | #[cfg(FALSE)] 25;
5+
| ^
6+
...
7+
LL | expand_it!()
8+
| ------------ in this macro invocation
9+
|
10+
= note: `#[warn(semicolon_in_expressions_from_macros)]` on by default
11+
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
12+
= note: for more information, see issue #79813 <https://github.com/rust-lang/rust/issues/79813>
13+
= note: macro invocations at the end of a block are treated as expressions
14+
= note: to ignore the value produced by the macro, add a semicolon after the invocation of `expand_it`
15+
= note: this warning originates in the macro `expand_it` (in Nightly builds, run with -Z macro-backtrace for more info)
16+
17+
warning: 1 warning emitted
18+

0 commit comments

Comments
 (0)