-
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
Can't write default methods that depend on a bound of an associated type of their traits #22036
Comments
cc me |
I've been running into very similar errors all day while updating my libs to the latest nightly. Here's an example of a method that works fine along with one that does not (simplest example I could come up with). use std::num::Float;
trait Foo {
type A: Float;
// This does not work.
fn sub_a(&self, a: <Self as Foo>::A, b: <Self as Foo>::A) -> <Self as Foo>::A {
a - b
}
// However this does.
fn sub_b(&self, a: <Self as Foo>::A, b: <Self as Foo>::A) -> <Self as Foo>::A {
fn sub<T: Float>(a: T, b: T) -> T { a - b }
sub(a, b)
}
}
fn main() {}
|
When projecting associate types for a trait's default methods, the trait itself was added to the predicate candidate list twice: one from parameter environment, the other from trait definition. Then the duplicates were deemed as code ambiguity and the compiler rejected the code. Simply checking and dropping the duplicates solves the issue. Closes rust-lang#22036
This example works now. I think this was a dup of #21965 |
@nikomatsakis I just updated to master and I'm still running into the same error as above - perhaps my error is a separate issue?
|
Edwardw's PR #22055 does seem to fix my issue however, perhaps it addresses something extra? |
@nikomatsakis The original issue is still present if the example on the first post is compiled with Edit: just compiled |
When projecting associate types for a trait's default methods, the trait itself was added to the predicate candidate list twice: one from parameter environment, the other from trait definition. Then the duplicates were deemed as code ambiguity and the compiler rejected the code. Simply checking and dropping the duplicates solves the issue. Closes rust-lang#22036
When projecting associate types for a trait's default methods, the trait itself was added to the predicate candidate list twice: one from parameter environment, the other from trait definition. Then the duplicates were deemed as code ambiguity and the compiler rejected the code. Simply checking and dropping the duplicates solves the issue. Closes rust-lang#22036
That's a mouthful! To exemplify:
This doesn't compile with
--cfg on_trait
, even though it does without it. Note that the only difference between the two configurations is that the function onnot(on_trait)
is a free function instead of a default method.With
on_trait
, this fails with:Tested on
rustc 1.0.0-dev (f3573aa83 2015-02-06 05:52:20 +0000)
The text was updated successfully, but these errors were encountered: