Showing with 1 addition and 1 deletion.
  1. +1 −1 src/parse.c
2 changes: 1 addition & 1 deletion src/parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -2325,7 +2325,7 @@ Dsymbols *Parser::parseDeclarations()
return a;
}

if (token.value == TOKclass)
if (token.value == TOKclass || token.value == TOKstruct)
{ AggregateDeclaration *s;

s = (AggregateDeclaration *)parseAggregate();
Expand Down