-
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
incompatible type for trait E0053 with specialization #32519
Comments
After reading this commit : Implement default associated type inheritance, this one : Add tests for specialization on associated types and the comments about associated type in the issue #30652 , it seems it is expected behavior, we "avoid projecting associated types", I feel the resulting error is a bit unclear and I don't know if it is even possible to have a "default type" that will pass. |
Smaller example: #![feature(specialization)]
trait Convert {
type Target;
fn convert(self) -> Self::Target;
}
impl<T> Convert for T {
default type Target = T;
default fn convert(self) -> Self::Target { self }
}
fn main() {} Removing the |
That seems valid, since I presume that |
This is currently intended behavior. In general, it would be unsound to allow I agree that the error is not great, and would be happy to see an issue for improving the error specifically. |
Hi,
When compiling this it results in :
I expected that to compile, because Mat2f32 is the associated type.
Instead it seems the new feature specialization interacts strangely with default or associated type.
Error:
Here is the code if play goes down:
The text was updated successfully, but these errors were encountered: