Skip to content

Commit f9e10f1

Browse files
committed
tidy fix
1 parent a873337 commit f9e10f1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/librustc_typeck/check/_match.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,12 @@ https://doc.rust-lang.org/reference/types.html#trait-objects");
730730
variant_ty
731731
} else {
732732
for field in fields {
733-
self.check_pat_walk(&field.node.pat, self.tcx.types.err, def_bm, match_discrim_span);
733+
self.check_pat_walk(
734+
&field.node.pat,
735+
self.tcx.types.err,
736+
def_bm,
737+
match_discrim_span,
738+
);
734739
}
735740
return self.tcx.types.err;
736741
};

0 commit comments

Comments
 (0)