We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compiler exploer says MSVC is ok w/ this
typedef int J[]; struct J_extra_alignment { char a; J b; }; struct J_extra_alignment var83; _Static_assert(sizeof(J) == 0, ""); _Static_assert(_Alignof(J) == 4, "");
AROCC says
❯ ./zig-out/bin/arocc --emulate=msvc test.c ./cur.c:7:26: error: variable has incomplete type 'struct J_extra_alignment' struct J_extra_alignment var83; ^ 1 error generated.
The text was updated successfully, but these errors were encountered:
Parser: better support for flexible array members
2c5bfbd
Previously, creating a variable of a type that contains a FAM errored due a record field having incomplete size. Closes Vexu#404
4a13647
Previously, creating a variable of a type that contains a FAM errored due to a record field having incomplete size. Closes Vexu#404
84b78f0
Previously, creating a variable of a type that contains a FAM errored due to a record field having incomplete size. Closes #404
Successfully merging a pull request may close this issue.
compiler exploer says MSVC is ok w/ this
AROCC says
The text was updated successfully, but these errors were encountered: