blob: 75ce14a4947c0961b84f32c00e96ca0cb0d896c2 [file] [log] [blame] [edit]
//@ build-pass
//@ edition:2018
#![feature(async_closure)]
macro_rules! match_expr {
($x:expr) => {}
}
fn main() {
match_expr!(async || {});
}