mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-14 22:10:08 +00:00
13 lines
152 B
Rust
13 lines
152 B
Rust
// build-pass
|
|
// edition:2018
|
|
|
|
#![feature(async_closure)]
|
|
|
|
macro_rules! match_expr {
|
|
($x:expr) => {}
|
|
}
|
|
|
|
fn main() {
|
|
match_expr!(async || {});
|
|
}
|