-
Notifications
You must be signed in to change notification settings - Fork 627
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"reached the recursion limit during monomorphization (selection ambiguity)" with join_all() #367
Comments
What in the world is wrong with |
I applied both #286 locally and removed |
Closing, as this error no longer happens. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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: