mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
276 B
Rust
15 lines
276 B
Rust
|
// 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!(( ||() ; ));
|
||
|
}
|