summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/async-matches-expr.rs
blob: 299faa0587bd58d8be20d7015ec27dee2c00b110 (plain)
1
2
3
4
5
6
7
8
9
10
// build-pass (FIXME(62277): could be check-pass?)
// edition:2018

macro_rules! match_expr {
    ($x:expr) => {}
}

fn main() {
    match_expr!(async {});
}