-
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
Evaluation overflow with specialization feature #48515
Comments
Note if you move the |
Oh, odd. And it looks like it's allowed to have the |
|
Am I misreading the RFC? It looks like it doesn't define
|
Strange. The other parts of the RFC mention // the `default` qualifier here means (1) not all items are impled
// and (2) those that are can be further specialized
default impl<T: Clone, Rhs> Add<Rhs> for T {
fn add_assign(&mut self, rhs: R) {
let tmp = self.clone() + rhs;
*self = tmp;
}
} To me the RFC seems to be self-contradicting a bit. Anyway, from the example above, we can see that |
Another example. |
Any progress on this? I ran into it again. Anybody I should consult on this? I'd like to help debug since this is blocking me on some work. EDIT: Not blocked anymore; I figured out a workaround. |
Would you mind sharing that workaround @joshlf? |
It's unfortunately not a general workaround; I just figured out a way to avoid using this feature entirely so it wasn't a problem. |
Anyone know, where to start fixing this? |
lol i keep forgetting about this and running into it. |
The current nightly compiler gives the error "overflow evaluating requirement" when a type is used as a trait with a default impl. For example:
(playground link)
...gives the following error:
Note that if we change
<(usize) as TypeString>::type_string()
to<() as TypeString>::type_string()
-()
has a specialized impl - it compiles and runs correctly.The text was updated successfully, but these errors were encountered: