]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #97415 - cjgillot:is-late-bound-solo, r=estebank
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>
Fri, 3 Jun 2022 15:10:51 +0000 (17:10 +0200)
committerGitHub <noreply@github.com>
Fri, 3 Jun 2022 15:10:51 +0000 (17:10 +0200)
commit57304823dbd1c246d1166e85c156e694d2f7a184
tree10933d053ab9240962948274f3ea2d9f34687c18
parentbaacbfda45c4f7b6c679ac7d03d374b0a1d58391
parent1e86cc5194eca009519b9631d081867366fe5c44
Rollup merge of #97415 - cjgillot:is-late-bound-solo, r=estebank

Compute `is_late_bound_map` query separately from lifetime resolution

This query is actually very simple, and is only useful for functions and method.  It can be computed directly by fetching the HIR, with no need to embed it within the lifetime resolution visitor.

Based on https://github.com/rust-lang/rust/pull/96296