Skip to content

Commit 8998ce2

Browse files
Replace Deref bounds on Interner in favor of a SliceLike trait
1 parent a155c38 commit 8998ce2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/needless_borrows_for_generic_args.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ fn needless_borrow_count<'tcx>(
267267
return false;
268268
}
269269

270-
let predicate = EarlyBinder::bind(predicate).instantiate(cx.tcx, &args_with_referent_ty);
270+
let predicate = EarlyBinder::bind(predicate).instantiate(cx.tcx, &args_with_referent_ty[..]);
271271
let obligation = Obligation::new(cx.tcx, ObligationCause::dummy(), cx.param_env, predicate);
272272
let infcx = cx.tcx.infer_ctxt().build();
273273
infcx.predicate_must_hold_modulo_regions(&obligation)

0 commit comments

Comments
 (0)