Skip to content

Commit 76d0b79

Browse files
authored
Rollup merge of #116452 - cjgillot:noassert-erased, r=oli-obk
Do not assert that hidden types don't have erased regions. cc #116306 `args` can have erased regions. In the linked issue, this is reached by computing whether a large type is `Freeze` to compute its ABI. I do not have a minimized test to include.
2 parents c1c5ab7 + 14c846c commit 76d0b79

File tree

1 file changed

+0
-3
lines changed
  • compiler/rustc_trait_selection/src/traits/select

1 file changed

+0
-3
lines changed

compiler/rustc_trait_selection/src/traits/select/mod.rs

-3
Original file line numberDiff line numberDiff line change
@@ -3116,9 +3116,6 @@ fn bind_generator_hidden_types_above<'tcx>(
31163116
bty.instantiate(tcx, args)
31173117
})
31183118
.collect();
3119-
if considering_regions {
3120-
debug_assert!(!hidden_types.has_erased_regions());
3121-
}
31223119
let bound_vars =
31233120
tcx.mk_bound_variable_kinds_from_iter(bound_vars.iter().chain(
31243121
(num_bound_variables..counter).map(|_| ty::BoundVariableKind::Region(ty::BrAnon)),

0 commit comments

Comments
 (0)