blob: 97d2cfed8b1b25f90e3122482b679efe330da16e [file] [log] [blame]
//@ check-pass
//@ edition:2018
#[allow(unused)]
async fn foo<'a>() {
let _data = &mut [0u8; { 1 + 4 }];
bar().await
}
async fn bar() {}
fn main() {}