Skip to content

Commit eec3b43

Browse files
committed
Pacify the mercilous tidy.
1 parent 21fb420 commit eec3b43

File tree

1 file changed

+2
-1
lines changed
  • src/librustc_typeck/check

1 file changed

+2
-1
lines changed

src/librustc_typeck/check/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -3635,7 +3635,8 @@ fn check_expr_with_unifier<'a, 'tcx, F>(fcx: &FnCtxt<'a, 'tcx>,
36353635
let (scheme, predicates) = type_scheme_and_predicates_for_def(fcx, expr.span, defn);
36363636
let mut path = qpath.trait_ref.path.clone();
36373637
path.segments.push(qpath.item_path.clone());
3638-
instantiate_path(fcx, &path, scheme, &predicates, Some(self_ty), defn, expr.span, expr.id);
3638+
instantiate_path(fcx, &path, scheme, &predicates, Some(self_ty),
3639+
defn, expr.span, expr.id);
36393640

36403641
// We always require that the type provided as the value for
36413642
// a type parameter outlives the moment of instantiation.

0 commit comments

Comments
 (0)