You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
spec/expression.dd: Move ( Type ) . Identifier to PrimaryExpression
Addresses the following irregularity in the grammar:
auto i = int.init.max; // valid
auto j = (int).init; // valid
auto k = (int).init.max; // invalid
UnaryExpression cannot chain into further PrimaryExpression or
PostfixExpression.
0 commit comments