fn erase_free_regions<'tcx, T>(tcx: TyCtxt<'tcx>, value: T) -> Twhere
T: TypeFoldable<TyCtxt<'tcx>>,
Expand description
Erase free regions from the given value. Largely copied from tcx.erase_regions
, but also
erases bound regions that are bound outside value
, so we can call this function inside a
Binder
.