diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2023-10-05 15:50:36 +0000 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2023-10-05 15:50:36 +0000 |
| commit | 14c846cb05ae00f6769e00c223b87fd8d43fef28 (patch) | |
| tree | 53c84787b6ed4d433a35f6e2280f078e833dad03 | |
| parent | 65519f5fc0bcd8a47e547226bbc7498a2b9a59fb (diff) | |
| download | rust-14c846cb05ae00f6769e00c223b87fd8d43fef28.tar.gz rust-14c846cb05ae00f6769e00c223b87fd8d43fef28.zip | |
Do not assert that hidden types don't have erased regions.
| -rw-r--r-- | compiler/rustc_trait_selection/src/traits/select/mod.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/select/mod.rs b/compiler/rustc_trait_selection/src/traits/select/mod.rs index 9b8853b42ab..8871de194a6 100644 --- a/compiler/rustc_trait_selection/src/traits/select/mod.rs +++ b/compiler/rustc_trait_selection/src/traits/select/mod.rs @@ -3116,9 +3116,6 @@ fn bind_generator_hidden_types_above<'tcx>( bty.instantiate(tcx, args) }) .collect(); - if considering_regions { - debug_assert!(!hidden_types.has_erased_regions()); - } let bound_vars = tcx.mk_bound_variable_kinds_from_iter(bound_vars.iter().chain( (num_bound_variables..counter).map(|_| ty::BoundVariableKind::Region(ty::BrAnon)), |
