Open
Description
Currently, procedural macros provided by futures-async-stream cannot handle expressions in macros.
rust-lang/futures-rs#1548 (comment):
It is not possible to replace
.await
in macros such asassert!(foo.await)
with this.Full support for this can not be done without compiler support, but it can support for some kinds of macros (however, this is not necessarily preferable, as a macro may call an async block etc): taiki-e/futures-rs@fb33504
Related: Nemo157/embrio-rs#14
Refs: 5198fe4