Skip to content

Commit 91de8e6

Browse files
jroeschJared Roesch
authored andcommitted
Fix tidy
1 parent bbcb13d commit 91de8e6

File tree

1 file changed

+4
-3
lines changed
  • src/librustc/middle/infer

1 file changed

+4
-3
lines changed

src/librustc/middle/infer/mod.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1328,9 +1328,10 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
13281328
})
13291329
};
13301330

1331-
self.report_and_explain_type_error(trace, &ty::type_err::terr_ty_param_default_mismatch(ty::expected_found {
1332-
expected: expected,
1333-
found: actual
1331+
self.report_and_explain_type_error(trace,
1332+
&ty::type_err::terr_ty_param_default_mismatch(ty::expected_found {
1333+
expected: expected,
1334+
found: actual
13341335
}));
13351336
}
13361337

0 commit comments

Comments
 (0)