13 lines
167 B
Rust
13 lines
167 B
Rust
![]() |
// compile-pass
|
||
|
// edition:2018
|
||
|
|
||
|
#![feature(async_await, async_closure)]
|
||
|
|
||
|
macro_rules! match_expr {
|
||
|
($x:expr) => {}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
match_expr!(async || {});
|
||
|
}
|