rustc/tests/ui/async-await/async-matches-expr.rs
2023-08-02 10:33:26 +02:00

11 lines
158 B
Rust

// build-pass (FIXME(62277): could be check-pass?)
// edition:2018
macro_rules! match_expr {
($x:expr) => {}
}
fn main() {
match_expr!(async {});
}