summary refs log tree commit diff
path: root/src/test/ui/async-await/async-matches-expr.rs
blob: a6f0211e41f98e369990176ff42af9fd4e5ef2bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// build-pass (FIXME(62277): could be check-pass?)
// edition:2018

#![feature(async_await)]

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

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