2019-07-05 17:06:39 +00:00
|
|
|
//@ build-pass
|
2019-07-02 02:12:29 +00:00
|
|
|
//@ edition:2018
|
|
|
|
|
2019-08-02 01:45:58 +00:00
|
|
|
#![feature(async_closure)]
|
2019-07-02 02:12:29 +00:00
|
|
|
|
|
|
|
macro_rules! match_expr {
|
|
|
|
($x:expr) => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
match_expr!(async || {});
|
|
|
|
}
|