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