blob: 14efb6100b0a568a1ce4be674a56044e227ac1f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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!(( ||() ; ));
}
|