Skip to content

Commit 5ea91ac

Browse files
committed
Collapse Substs::identity_for_item in collect
1 parent 39a68e9 commit 5ea91ac

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/librustc_typeck/collect.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1096,9 +1096,7 @@ fn type_of<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
10961096
}
10971097

10981098
let substs = ty::ClosureSubsts {
1099-
substs: Substs::for_item(tcx, def_id, |param, _| {
1100-
tcx.mk_param_from_def(param)
1101-
})
1099+
substs: Substs::identity_for_item(tcx, def_id),
11021100
};
11031101

11041102
tcx.mk_closure(def_id, substs)

0 commit comments

Comments
 (0)