Skip to content

Commit 88c5838

Browse files
committed
Lower anonymous structs or unions to HIR
1 parent 18f51f7 commit 88c5838

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/types.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -806,8 +806,8 @@ impl Rewrite for ast::Ty {
806806
ast::TyKind::Tup(ref items) => {
807807
rewrite_tuple(context, items.iter(), self.span, shape, items.len() == 1)
808808
}
809-
ast::TyKind::AnonStruct(_) => Some(context.snippet(self.span).to_owned()),
810-
ast::TyKind::AnonUnion(_) => Some(context.snippet(self.span).to_owned()),
809+
ast::TyKind::AnonStruct(..) => Some(context.snippet(self.span).to_owned()),
810+
ast::TyKind::AnonUnion(..) => Some(context.snippet(self.span).to_owned()),
811811
ast::TyKind::Path(ref q_self, ref path) => {
812812
rewrite_path(context, PathContext::Type, q_self, path, shape)
813813
}

0 commit comments

Comments
 (0)