Commit f27e5df4 authored by Robert Griesemer's avatar Robert Griesemer

- fixed double-definition of StructType

SVN=111689
parent b1d991d6
......@@ -623,8 +623,7 @@ Struct literals represent struct constants. They comprise a list of
expressions that represent the individual fields of a struct. The
individual expressions must match those of the specified struct type.
StructLit = StructType '(' [ ExpressionList ] ')' .
StructType = TypeName .
StructLit = TypeName '(' [ ExpressionList ] ')' .
The type name must be that of a defined struct type.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment