Skip to content

Commit cb10f2f

Browse files
authored
Merge pull request rust-lang#192 from dwrensha/rustup
update for latest nightly rustc
2 parents 2daf62f + f174cc8 commit cb10f2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/eval_context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2032,7 +2032,7 @@ fn fulfill_obligation<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
20322032

20332033
// Do the initial selection for the obligation. This yields the
20342034
// shallow result we are looking for -- that is, what specific impl.
2035-
tcx.infer_ctxt(()).enter(|infcx| {
2035+
tcx.infer_ctxt().enter(|infcx| {
20362036
let mut selcx = traits::SelectionContext::new(&infcx);
20372037

20382038
let obligation_cause = traits::ObligationCause::misc(span,

src/traits.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ impl<'a, 'tcx> EvalContext<'a, 'tcx> {
1616
pub(crate) fn fulfill_obligation(&self, trait_ref: ty::PolyTraitRef<'tcx>) -> traits::Vtable<'tcx, ()> {
1717
// Do the initial selection for the obligation. This yields the shallow result we are
1818
// looking for -- that is, what specific impl.
19-
self.tcx.infer_ctxt(()).enter(|infcx| {
19+
self.tcx.infer_ctxt().enter(|infcx| {
2020
let mut selcx = traits::SelectionContext::new(&infcx);
2121

2222
let obligation = traits::Obligation::new(

0 commit comments

Comments
 (0)