-
Notifications
You must be signed in to change notification settings - Fork 61
Open
Description
Upstream D has plans to support align(default) in the future: dlang/dmd#20587 dlang/dmd#20589
At the moment, I’m getting the following errors with serve-d on the upstream test file:
struct S
{
align(1)
{
short x1;
int y1;
long z1;
align(default) /* Primary expression expected */
{ /* declaration expected instead of `{` */
short x;
int y;
long z;
}
}
}Metadata
Metadata
Assignees
Labels
No labels