rust/tests/ui/parser/semi-after-closure-in-macro.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
276 B
Rust
Raw Normal View History

// check-pass
// Checks that the fix in #103222 doesn't also disqualify semicolons after
// closures within parentheses *in macros*, where they're totally allowed.
macro_rules! m {
(($expr:expr ; )) => {
$expr
};
}
fn main() {
let x = m!(( ||() ; ));
}