]> git.proxmox.com Git - rustc.git/blame - src/test/ui/async-await/async-matches-expr.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / async-await / async-matches-expr.rs
CommitLineData
416331ca 1// build-pass (FIXME(62277): could be check-pass?)
b7449926 2// edition:2018
83c7162d 3
b7449926
XL
4macro_rules! match_expr {
5 ($x:expr) => {}
94b46f34
XL
6}
7
7453a54e 8fn main() {
b7449926 9 match_expr!(async {});
223e47cc 10}