blob: 1eeb04b883378e2dc7e7fd2d57ad92dc33d3f0b3 [file] [log] [blame]
//@ 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!(( ||() ; ));
}