]> git.proxmox.com Git - rustc.git/blob - src/test/ui/async-await/issue-73050.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / async-await / issue-73050.rs
1 // check-pass
2 // edition:2018
3
4 #[allow(unused)]
5 async fn foo<'a>() {
6 let _data = &mut [0u8; { 1 + 4 }];
7 bar().await
8 }
9
10 async fn bar() {}
11
12 fn main() {}