]> git.lizzy.rs Git - rust.git/blob - tests/ui/async-await/async-matches-expr.rs
Rollup merge of #107027 - GuillaumeGomez:rm-extra-removal, r=tmiasko
[rust.git] / tests / ui / async-await / async-matches-expr.rs
1 // build-pass (FIXME(62277): could be check-pass?)
2 // edition:2018
3
4 macro_rules! match_expr {
5     ($x:expr) => {}
6 }
7
8 fn main() {
9     match_expr!(async {});
10 }