Skip to content

Commit 7b49678

Browse files
committed
fmt
1 parent c62e36b commit 7b49678

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/librustc_passes/layout_test.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ impl ItemLikeVisitor<'tcx> for LayoutTest<'tcx> {
3030
let item_def_id = self.tcx.hir().local_def_id(item.hir_id);
3131

3232
match item.kind {
33-
ItemKind::TyAlias(..) |
34-
ItemKind::Enum(..) |
35-
ItemKind::Struct(..) |
36-
ItemKind::Union(..) => {
33+
ItemKind::TyAlias(..)
34+
| ItemKind::Enum(..)
35+
| ItemKind::Struct(..)
36+
| ItemKind::Union(..) => {
3737
for attr in self.tcx.get_attrs(item_def_id).iter() {
3838
if attr.check_name(sym::rustc_layout) {
3939
self.dump_layout_of(item_def_id, item, attr);

0 commit comments

Comments
 (0)