rust/tests/ui/async-await/async-closure-matches-expr.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
126 B
Rust
Raw Normal View History

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