You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not sure whether this should be considered a rustc bug or a futures-rs bug. I think the problem could be sidestepped on the futures-rs side by making join_all()'s I::Item be an actual Future rather than an IntoFuture.
The text was updated successfully, but these errors were encountered:
I expect the following program to compile without error.
Instead,
rustc
(stable, beta, and nightly) gives meThis problem seems to be related to rust-lang/rust#38033.
I am not sure whether this should be considered a rustc bug or a futures-rs bug. I think the problem could be sidestepped on the futures-rs side by making
join_all()
'sI::Item
be an actualFuture
rather than anIntoFuture
.The text was updated successfully, but these errors were encountered: