Closed
Description
macro_rules! match_expr {
($x:expr) => {}
}
fn main() {
match_expr!(async {})
}
fails with "error: no rules expected the token async
". Playground link
macro_rules! match_expr {
($x:expr) => {}
}
fn main() {
match_expr!(async {})
}
fails with "error: no rules expected the token async
". Playground link