]> git.lizzy.rs Git - rust.git/blob - tests/ui/async-await/async-closure-matches-expr.rs
Rollup merge of #107203 - chenyukang:yukang/fix-106496-remove-deref, r=compiler-errors
[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 }