blob: c73268dc46a72c28e1e2c037cbc98a486b908fa7 [file] [log] [blame]
// compile-flags: -Z print-type-sizes --crate-type lib
// edition:2021
// build-pass
// ignore-pass
#![allow(drop_copy)]
async fn wait() {}
pub async fn test(arg: [u8; 8192]) {
wait().await;
drop(arg);
}