File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -239,13 +239,13 @@ differently. It uses canonical queries for trait solving which use
239
239
[ ` take_and_reset_region_constraints ` ] at the end. This extracts all of the
240
240
outlives constraints added during the canonical query. This is required
241
241
as the NLL solver must not only know * what* regions outlive each other,
242
- but also * where* . Finally, the NLL solver invokes [ ` take_region_var_origins ` ] ,
242
+ but also * where* . Finally, the NLL solver invokes [ ` get_region_var_infos ` ] ,
243
243
providing all region variables to the solver.
244
244
245
245
[ `resolve_regions_and_report_errors` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_trait_selection/traits/struct.ObligationCtxt.html#method.resolve_regions_and_report_errors
246
246
[ `lexical_region_resolve` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_infer/infer/lexical_region_resolve/index.html
247
247
[ `take_and_reset_region_constraints` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_infer/infer/struct.InferCtxt.html#method.take_and_reset_region_constraints
248
- [ `take_region_var_origins ` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_infer/infer/struct.InferCtxt.html#method.take_region_var_origins
248
+ [ `get_region_var_infos ` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_infer/infer/struct.InferCtxt.html#method.get_region_var_infos
249
249
250
250
## Lexical region resolution
251
251
You can’t perform that action at this time.
0 commit comments