-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Rust 1.20 regression, for_each 0.2.0, conflicts with unstable iterator_for_each feature #43239
Comments
I think this is expected breakage, since you could use UFC syntax to call the method you mean. Otherwise we could never add new methods to any type or trait. |
I'm surprised that it just assumes the code wanted |
If |
In that test |
The libs team decided to hold off on evaluating what to do here until we have a crater report to see what the brekage is. |
A crater report for beta happened, and I don't believe we saw any other regressions related to this, so I'm going to close this now. |
cc @JaJe
It appears that a new unstable feature was implemented that conflicts with the for_each crate. rustc interprets the use of Iterator::for_each as attempting to use the unstable feature instead of the trait method defined by the for_each crate.
The text was updated successfully, but these errors were encountered: