Skip to content

Commit d62113d

Browse files
authored
Unrolled build for rust-lang#120037
Rollup merge of rust-lang#120037 - compiler-errors:remove-next-root-var-helper, r=lcnr Remove `next_root_ty_var` Uhh we seem to not have any test that relies on this anymore. Maybe due to the way we changed alias-relate or whatever. Removing this hack helper fn because rust-lang#119106 is the general solution. r? lcnr
2 parents 16fadb3 + 9d15b50 commit d62113d

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

compiler/rustc_hir_typeck/src/closure.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
7171
let parent_args =
7272
GenericArgs::identity_for_item(tcx, tcx.typeck_root_def_id(expr_def_id.to_def_id()));
7373

74-
let tupled_upvars_ty = self.next_root_ty_var(TypeVariableOrigin {
74+
let tupled_upvars_ty = self.next_ty_var(TypeVariableOrigin {
7575
kind: TypeVariableOriginKind::ClosureSynthetic,
7676
span: expr_span,
7777
});
@@ -101,7 +101,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
101101

102102
// Create a type variable (for now) to represent the closure kind.
103103
// It will be unified during the upvar inference phase (`upvar.rs`)
104-
None => self.next_root_ty_var(TypeVariableOrigin {
104+
None => self.next_ty_var(TypeVariableOrigin {
105105
// FIXME(eddyb) distinguish closure kind inference variables from the rest.
106106
kind: TypeVariableOriginKind::ClosureSynthetic,
107107
span: expr_span,

compiler/rustc_hir_typeck/src/fn_ctxt/mod.rs

-4
Original file line numberDiff line numberDiff line change
@@ -190,10 +190,6 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
190190
pub fn errors_reported_since_creation(&self) -> bool {
191191
self.dcx().err_count() > self.err_count_on_creation
192192
}
193-
194-
pub fn next_root_ty_var(&self, origin: TypeVariableOrigin) -> Ty<'tcx> {
195-
Ty::new_var(self.tcx, self.next_ty_var_id_in_universe(origin, ty::UniverseIndex::ROOT))
196-
}
197193
}
198194

199195
impl<'a, 'tcx> Deref for FnCtxt<'a, 'tcx> {

0 commit comments

Comments
 (0)