rust/tests/ui/async-await/repeat_count_const_in_async_fn.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
175 B
Rust
Raw Normal View History

// 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]) {}