]> git.proxmox.com Git - rustc.git/blame - src/test/ui/async-await/repeat_count_const_in_async_fn.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / async-await / repeat_count_const_in_async_fn.rs
CommitLineData
ba9703b0
XL
1// check-pass
2// edition:2018
3// compile-flags: --crate-type=lib
4
5pub async fn test() {
6 const C: usize = 4;
7 foo(&mut [0u8; C]).await;
8}
9
10async fn foo(_: &mut [u8]) {}