Sign in
fuchsia
/
third_party
/
rust
/
8429c9911b68afe9c0cc5804cb15fc22f03d913c
/
.
/
tests
/
ui
/
coroutine
/
unresolved-ct-var.rs
blob: d7e3c2d37324190456f1c4bf1a25c70a7fd49073 [
file
] [
log
] [
blame
]
//@ incremental
//@ edition:2021
fn
main
()
{
let
_
=
async
{
let
s
=
std
::
array
::
from_fn
(|
_
|
()).
await
;
//~^ ERROR `[(); _]` is not a future
};
}