blob: a632ffa603a1e2f64c30bbf20fc2149e1885a9b8 [file] [log] [blame] [edit]
//@ build-pass (FIXME(62277): could be check-pass?)
//@ edition:2018
macro_rules! match_expr {
($x:expr) => {}
}
fn main() {
match_expr!(async {});
}