Closed
Description
#![feature(async_await, futures_api)]
#![no_std]
pub async fn foo() {
}
(playground) currently fails with
error[E0433]: failed to resolve: could not find `from_generator` in `future`
This should also work with whatever the syntax for await
is, currently it fails earlier than this error because of await!
only being defined in std
, see #56767.
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Done