]> git.lizzy.rs Git - rust.git/blob - tests/ui/async-await/async-closure-matches-expr.rs
Rollup merge of #106960 - estebank:parse-anon-enums, r=cjgillot
[rust.git] / tests / ui / async-await / async-closure-matches-expr.rs
1 // build-pass
2 // edition:2018
3
4 #![feature(async_closure)]
5
6 macro_rules! match_expr {
7     ($x:expr) => {}
8 }
9
10 fn main() {
11     match_expr!(async || {});
12 }