-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
regression: conflicting trait impls because Box<dyn Fn*>
now implements Fn*
.
#59750
Comments
Minimized reproduction: trait B {}
impl<C: FnOnce()> B for C {}
impl B for Box<dyn FnOnce()> {} The issue here is that |
Box<dyn Fn*>
now implements Fn*
.
Is this a T-libs issue or a T-compiler one? Was this was expected fallout from another change? Tagging as P-high for now, due its nature as a regression. |
This is an expected regression due to introducing a new implementation of a If there are key ecosystem crates that relied upon these impls not existing, then we should hold off on the introduction of these impls and give them time to migrate. However, I believe that it is important that we achieve our long-standing goal of object-safe cc @rust-lang/lang @rust-lang/libs to call attention to the introduction of new trait impls causing breakage. |
so is the next step to attempt some sort of evaluation to figure out if there exist "key ecosystem crates" relying on the absence of these impls? I assume our main method for doing this (beyond the crater runs that have already been done) is to just wait and see:
right? |
What you could do is to open a PR that is effectively a no-op and crater run that one. Otherwise we'll find out in the usual beta crater runs and stuff. |
In any case I don't think there is anything actually actionable here on our side until we see evidence that this change broke "key ecosystem crates" in the wild. With that in mind, I'm going to downgrade this to P-medium. |
Ah true; I assumed there had already been crater runs, but I don't know why I thought that. |
This made its way to 1.35.0 now |
Given that it went into stable and in the blog post, this is non-actionable and therefore I'm closing as wontfix. |
Most likely related to #59500 ?
Simplified reproduction:
Before: compiles on stable, beta, previous nightly
On latest nightly:
I do not know whether that was expected and should be fixed on my side, or is it an unintended breakage.
The text was updated successfully, but these errors were encountered: