1
Fork 0
rust/src/test/ui/async-await/async-closure-matches-expr.rs

13 lines
165 B
Rust
Raw Normal View History

2019-07-06 02:06:39 +09:00
// build-pass
// edition:2018
#![feature(async_await, async_closure)]
macro_rules! match_expr {
($x:expr) => {}
}
fn main() {
match_expr!(async || {});
}