summaryrefslogtreecommitdiff
path: root/tests/ui/print_type_sizes/async.rs
blob: 1598b0696913b6e18dc59a2ed556a3505b3f9367 (plain)
1
2
3
4
5
6
7
8
9
10
11
// compile-flags: -Z print-type-sizes --crate-type lib
// edition:2021
// build-pass
// ignore-pass

async fn wait() {}

pub async fn test(arg: [u8; 8192]) {
    wait().await;
    drop(arg);
}