-
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
Treatment of regions in trait matching is perhaps too simplistic #21974
Comments
Note that this problem only really arises with where-clauses, since in the case of impls all lifetimes (other than 'static) are variables bound in the impl itself. |
After some discussion with @aturon I feel a bit better here. It's true that the current code is not handling this scenario correctly, in a couple of ways, but there is a plausible way forward (described below). Moreover, for the short short term, I think I can make progress in my implied bounds experiments by filtering the predicates we add to the environment a bit. The obvious way forward is to overhaul region inference so that rather than simply infallibly collecting constraints as it goes, it actually evaluates the constraints that it has at hand to decide whether adding a new constraint will create an insolvable graph or not. I have to do some investigation into the best algorithms here but this kind of "live updated" dataflow graph seems like something that has certainly been explored over time, so I'm sure there's a really nifty algorithmic solution that will be tons of fun to implement. The other change that is needed is to modify the trait checker, which currently has a rule that says "If I see two matches from where clauses, drop one of them". This rule can probably be dropped completely given #21968, but if not, it can at least be made more sensitive. This would imply that the calls above would yield ambiguous results until the inference graph is complete enough to select just one of the where clauses. |
Note that this is not obviously 100% backwards compat, but I think it probably falls under the realm of "bug fix". |
In particular, if we do it right, we're just detecting (earlier) guaranteed errors that will occur later. But we should probably modify the trait checker so that the example above at least yields ambiguity now. I will experiment with that. |
…move this overeager code that was pruning out ambig where-clause matches in trait selection. cc rust-lang#21974.
Here are some weird things I've noticed. This doesn't compile, the compiler is too picky: use std::ops::Add;
fn plus<T>(a: &T, b: &T) -> T where
for <'a> &'a T: Add<&'a T, Output=T>,
{
a + b // error: cannot infer an appropriate lifetime for automatic coercion due to conflicting requirements
}
fn main() {} Solution: Either annotate a and b params with the same lifetime, or do the following fn plus<T>(a: &T, b: &T) -> T where
for <'a, 'b> &'a T: Add<&'b T, Output=T>,
{
a + b
} But we can add nonsense bounds to existential clauses too fn plus<'c, T>(a: &'c T, b: &'c T) -> T where
for <'a: 'c> &'a T: Add<&'a T, Output=T>,
{
let s = a + b;
&s + &s
} Only Add for lifetimes longer than |
The problem with your first program is that trait matching does not do subtyping - it does work if you reborrow: use std::ops::Add;
fn plus<T>(a: &T, b: &T) -> T where
for <'a> &'a T: Add<&'a T, Output=T>,
{
&*a + &*b
}
fn main() {
println!("1+1={}", plus(&1,&1));
} You last program works as you wrote it – http://is.gd/SUyb2X. |
Neither of these examples are relevant to this issue anyway. |
@arielb1 Thanks for the clarification! The last program had the |
Triage: this issue is kind of vague, and has a lot going on. Given this comment and that the original example still does not compile, it seems like this is something that might be doable, but it's not clear that we will/should. |
Apparently this causes problems when adding new implicit type parameter bounds and implicit trait supertraits (like use std::fmt::Debug;
trait DescriptiveSpec<'r> {}
impl<'r, T> DescriptiveSpec<'r> for &'r T {}
fn from_spec<'r, T: DescriptiveSpec<'r>>(spec: &'r T) {}
fn matching_contains<'s, T: 's, I>(a: &mut &'s I) where &'s I: Debug {
from_spec(a);
}
fn main() {} |
Remove invalid suggestion involving `Fn` trait bound This pull request closes rust-lang#85735. The actual issue is a duplicate of rust-lang#21974, but rust-lang#85735 contains a further problem, which is an invalid suggestion if `Fn`/`FnMut`/`FnOnce` trait bounds are involved: The suggestion code checks whether the trait bound ends with `>` to determine whether it has any generic arguments, but the `Fn*` traits have a special syntax for generic arguments that doesn't involve angle brackets. The example given in rust-lang#85735: ```rust trait Foo {} impl<'a, 'b, T> Foo for T where T: FnMut(&'a ()), T: FnMut(&'b ()), { } ``` currently produces: ``` error[E0283]: type annotations needed --> src/lib.rs:4:8 | 4 | T: FnMut(&'a ()), | ^^^^^^^^^^^^^ cannot infer type for type parameter `T` | = note: cannot satisfy `T: FnMut<(&'a (),)>` help: consider specifying the type arguments in the function call | 4 | T: FnMut(&'a ())::<Self, Args>, | ^^^^^^^^^^^^^^ error: aborting due to previous error ``` which is incorrect, because there is no function call, and applying the suggestion would lead to a parse error. With my changes, I get: ``` error[E0283]: type annotations needed --> test.rs:4:8 | 4 | T: FnMut(&'a ()), | ^^^^^^^^^^^^^ cannot infer type for type parameter `T` | ::: [...]/library/core/src/ops/function.rs:147:1 | 147 | pub trait FnMut<Args>: FnOnce<Args> { | ----------------------------------- required by this bound in `FnMut` | = note: cannot satisfy `T: FnMut<(&'a (),)>` error: aborting due to previous error ``` i.e. I have added a check to prevent the invalid suggestion from being issued for `Fn*` bounds, while the underlying issue rust-lang#21974 remains for now.
Adding an explicit bound to an implementation can apparently make the implementation less general, even when the explicit bound is equivalent to an implied WF bound. This goes against my intuition for implied bounds. Is it
Here is an example of the phenomenon.trait MyTrait {}
// The bound we want to meet
fn foo<T>(_: &T) where for<'any> &'any T: MyTrait {}
// Implemented with an explicit `'inner: 'outer` bound
struct Baz;
impl<'outer, 'inner: 'outer> MyTrait for &'outer &'inner Baz {}
fn main() {
// `&'_ &'static Baz` meets the bounds
foo(&&Baz);
let local_static_ref = &Baz;
foo(&local_static_ref);
// `&'_ &'local Baz` does not
let baz = Baz;
foo(&&baz);
}
Removing the impl<'outer, 'inner> MyTrait for &'outer &'inner Baz {} And it's not a late-vs-early bound issue as this works too: impl<'outer: 'outer, 'inner: 'inner> MyTrait for &'outer &'inner Baz {} |
Another similar case that fails to compile: trait SomeTrait<'a> {}
fn foo<'a, 'b, T: SomeTrait<'a> + SomeTrait<'b>>() {}
|
Not sure why I didn't see this coming. Until now, the treatment of regions in trait matching has intentionally ignored lifetimes (in the sense of, it did not consider lifetime constraints when deciding what impl to apply -- once an impl is selected, the constraints that appear on it naturally are enforced). The reason for this is that lifetime inference is a second pass that uses a much more flexible constraint-graph solving algorithm, in contrast to the bulk of type inference which uses something much closer to unification. A side-effect of this is that you cannot easily get a "yes or no" answer to the question "does
'x : 'y
hold?" One must see wait until all the constraints have been gathered to know.However, this leads to problems when you have multiple predicates in the environment that reference lifetimes. This is easy to see in the following example, but one does not need where clauses to get into this situation:
this winds up failing to compile because it can't really distinguish the two predicates here, since they are identical but for the specific lifetimes involved. This doesn't arise much in practice because it's unusual to have two requirements like that, usually you either have a more universal requirement (e.g.,
for<'a> &'a T : Foo
), or just one particular lifetime you are interested in. I observed this problem however when experimenting with implied bounds, because it is common for multiple indistinguishable bounds of this kind to be generated as part of that proposal.I'm not really sure how best to solve this at the moment.
The text was updated successfully, but these errors were encountered: