Skip to content

Commit 990b289

Browse files
committed
fix: emit error when fragment is MethodReceiverExpr and items is empty
1 parent 2d17294 commit 990b289

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed

compiler/rustc_expand/src/expand.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,11 @@ impl<'a, 'b> MacroExpander<'a, 'b> {
722722
});
723723
}
724724
};
725-
if fragment_kind == AstFragmentKind::Expr && items.is_empty() {
725+
if matches!(
726+
fragment_kind,
727+
AstFragmentKind::Expr | AstFragmentKind::MethodReceiverExpr
728+
) && items.is_empty()
729+
{
726730
self.cx.emit_err(RemoveExprNotSupported { span });
727731
fragment_kind.dummy(span)
728732
} else {

tests/ui/macros/issue-111749.rs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
macro_rules! cbor_map {
2+
($key:expr) => {
3+
$key.signum();
4+
};
5+
}
6+
7+
fn main() {
8+
cbor_map! { #[test(test)] 4};
9+
//~^ ERROR removing an expression is not supported in this position
10+
//~| ERROR attribute must be of the form `#[test]`
11+
//~| WARNING this was previously accepted by the compiler but is being phased out
12+
}

tests/ui/macros/issue-111749.stderr

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
error: removing an expression is not supported in this position
2+
--> $DIR/issue-111749.rs:8:17
3+
|
4+
LL | cbor_map! { #[test(test)] 4};
5+
| ^^^^^^^^^^^^^
6+
7+
error: attribute must be of the form `#[test]`
8+
--> $DIR/issue-111749.rs:8:17
9+
|
10+
LL | cbor_map! { #[test(test)] 4};
11+
| ^^^^^^^^^^^^^
12+
|
13+
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
14+
= note: for more information, see issue #57571 <https://github.com/rust-lang/rust/issues/57571>
15+
= note: `#[deny(ill_formed_attribute_input)]` on by default
16+
17+
error: aborting due to 2 previous errors
18+

0 commit comments

Comments
 (0)