diff options
| author | Michael Goulet <michael@errs.io> | 2022-12-15 02:38:39 +0000 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2023-01-08 03:37:20 +0000 |
| commit | 3c41003873ed16dc415b18ee65602438be3fe1e4 (patch) | |
| tree | 1bfb9e4b9846892bc1943cf3a6784a1e7f22ec2a /compiler/rustc_trait_selection/src | |
| parent | e5d46a5bdac3f19793297914d4ada432024fbe95 (diff) | |
| download | rust-3c41003873ed16dc415b18ee65602438be3fe1e4.tar.gz rust-3c41003873ed16dc415b18ee65602438be3fe1e4.zip | |
Add type flags support for Ty and Const late-bound regions
Diffstat (limited to 'compiler/rustc_trait_selection/src')
| -rw-r--r-- | compiler/rustc_trait_selection/src/traits/select/mod.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/select/mod.rs b/compiler/rustc_trait_selection/src/traits/select/mod.rs index 760b4585f4e..3f14491f803 100644 --- a/compiler/rustc_trait_selection/src/traits/select/mod.rs +++ b/compiler/rustc_trait_selection/src/traits/select/mod.rs @@ -755,7 +755,7 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> { // contain the "'static" lifetime (any other lifetime // would either be late-bound or local), so it is guaranteed // to outlive any other lifetime - if pred.0.is_global() && !pred.0.has_late_bound_regions() { + if pred.0.is_global() && !pred.0.has_late_bound_vars() { Ok(EvaluatedToOk) } else { Ok(EvaluatedToOkModuloRegions) @@ -1785,9 +1785,8 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> { // Check if a bound would previously have been removed when normalizing // the param_env so that it can be given the lowest priority. See // #50825 for the motivation for this. - let is_global = |cand: &ty::PolyTraitPredicate<'tcx>| { - cand.is_global() && !cand.has_late_bound_regions() - }; + let is_global = + |cand: &ty::PolyTraitPredicate<'tcx>| cand.is_global() && !cand.has_late_bound_vars(); // (*) Prefer `BuiltinCandidate { has_nested: false }`, `PointeeCandidate`, // `DiscriminantKindCandidate`, `ConstDestructCandidate` |
