Skip to content

Commit f45a993

Browse files
committed
Rustfmt
1 parent a292ac7 commit f45a993

File tree

1 file changed

+4
-1
lines changed
  • compiler/rustc_infer/src/infer/error_reporting

1 file changed

+4
-1
lines changed

compiler/rustc_infer/src/infer/error_reporting/mod.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1826,7 +1826,10 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
18261826
exp_found: &ty::error::ExpectedFound<Ty<'tcx>>,
18271827
diag: &mut DiagnosticBuilder<'tcx>,
18281828
) {
1829-
debug!("suggest_accessing_field_where_appropriate(cause={:?}, exp_found={:?})", cause, exp_found);
1829+
debug!(
1830+
"suggest_accessing_field_where_appropriate(cause={:?}, exp_found={:?})",
1831+
cause, exp_found
1832+
);
18301833
if let ty::Adt(expected_def, expected_substs) = exp_found.expected.kind() {
18311834
if expected_def.is_enum() {
18321835
return;

0 commit comments

Comments
 (0)