summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/repeat_count_const_in_async_fn.rs
blob: ebabc3fbf10f9185a3ee9287afeaef3e7c145dbe (plain)
1
2
3
4
5
6
7
8
9
10
// check-pass
// edition:2018
// compile-flags: --crate-type=lib

pub async fn test() {
    const C: usize = 4;
    foo(&mut [0u8; C]).await;
}

async fn foo(_: &mut [u8]) {}