1 // build-pass 2 // edition:2018 3 4 #![feature(async_closure)] 5 6 macro_rules! match_expr { 7 ($x:expr) => {} 8 } 9 main()10 fn main() { 11 match_expr!(async || {}); 12 } 13