forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#114117 - compiler-errors:return-to-uniq, r=…
…lcnr Restore region uniquification in the new solver 🎉 All of the bugs that were "due" to uniquification have been settled via other means (e.g. bidirectional alias-relate, param-env incompleteness, etc). Firstly, revert the functional changes in rust-lang#110180. 😸 Secondly, we need to ignore regions when considering if a goal has changed (the "has_changed" boolean returned from `evaluate_goal`) -- otherwise, because we're doing region uniquification, we may perpetually consider a goal to be changed. See the UI test I committed for an explanation.
- Loading branch information
Showing
4 changed files
with
48 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
tests/ui/traits/new-solver/dont-loop-fulfill-on-region-constraints.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// compile-flags: -Ztrait-solver=next | ||
// check-pass | ||
|
||
trait Eq<'a, 'b, T> {} | ||
|
||
trait Ambig {} | ||
impl Ambig for () {} | ||
|
||
impl<'a, T> Eq<'a, 'a, T> for () where T: Ambig {} | ||
|
||
fn eq<'a, 'b, T>(t: T) | ||
where | ||
(): Eq<'a, 'b, T>, | ||
{ | ||
} | ||
|
||
fn test<'r>() { | ||
let mut x = Default::default(); | ||
|
||
// When we evaluate `(): Eq<'r, 'r, ?0>` we uniquify the regions. | ||
// That leads us to evaluate `(): Eq<'?0, '?1, ?0>`. The response of this | ||
// will be ambiguous (because `?0: Ambig` is ambig) and also not an "identity" | ||
// response, since the region constraints will contain `'?0 == '?1` (so | ||
// `is_changed` will return true). Since it's both ambig and changed, | ||
// fulfillment will both re-register the goal AND loop again. This hits the | ||
// overflow limit. This should neither be considered overflow, nor ICE. | ||
eq::<'r, 'r, _>(x); | ||
|
||
x = (); | ||
} | ||
|
||
fn main() {} |