Skip to content

Commit 37565a8

Browse files
authored
region-outlives propagation (#2169)
* region-outlives propagation * woops * gamer
1 parent 5f164d8 commit 37565a8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: src/borrow_check/region_inference/closure_constraints.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ While borrow-checking a closure inside of `RegionInferenceContext::solve` we sep
1515

1616
### Region-outlive constraints
1717

18-
If we fail to prove a region-outlives constraint, we try to propagate it in `fn try_propagate_universal_region_error`.
18+
If `RegionInferenceContext::check_universal_regions` fails to prove some outlives constraint `'longer_fr: 'shorter_fr`, we try to propagate it in `fn try_propagate_universal_region_error`. Both these universal regions are either local to the closure or an external region.
19+
20+
In case `'longer_fr` is a local universal region, we search for the largest external region `'fr_minus` which is outlived by `'longer_fr`, i.e. `'longer_fr: 'fr_minus`. In case there are multiple such regions, we pick the `mutual_immediate_postdominator`: the fixpoint of repeatedly computing the GLB of all GLBs, see [TransitiveRelation::postdom_upper_bound](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_data_structures/transitive_relation/struct.TransitiveRelation.html#method.postdom_upper_bound) for more details.
21+
22+
If `'fr_minus` exists we require it to outlive all non-local upper bounds of `'shorter_fr`. There will always be at least one non-local upper bound `'static`.
1923

2024
### Type-outlive constraints
2125

0 commit comments

Comments
 (0)