Skip to content

Commit be8bfb2

Browse files
committed
x fmt
I have no idea what caused this change, I don't think other commits changed anything near these lines?..
1 parent 54abf6d commit be8bfb2

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1536,8 +1536,11 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
15361536
let unnormalized_term = data.projection_term.to_term(self.tcx);
15371537
// FIXME(-Znext-solver): For diagnostic purposes, it would be nice
15381538
// to deeply normalize this type.
1539-
let normalized_term =
1540-
ocx.normalize(&obligation.cause, obligation.param_env, Unnormalized::new_wip(unnormalized_term));
1539+
let normalized_term = ocx.normalize(
1540+
&obligation.cause,
1541+
obligation.param_env,
1542+
Unnormalized::new_wip(unnormalized_term),
1543+
);
15411544

15421545
// constrain inference variables a bit more to nested obligations from normalize so
15431546
// we can have more helpful errors.

0 commit comments

Comments
 (0)