rust/tests/ui/coroutine/unresolved-ct-var.rs
2023-10-20 21:14:02 +00:00

10 lines
169 B
Rust

// incremental
// edition:2021
fn main() {
let _ = async {
let s = std::array::from_fn(|_| ()).await;
//~^ ERROR `[(); _]` is not a future
};
}