-
-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
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
Parse error on array of arrays #455
Comments
Workaround: #version 450
float[5][5] arr; ...where upon I discover a further bug that unsized arrays fail to parse in this syntax. Type specification array syntax: array of array parses per Lines 204 to 207 in d3c28d6
C array declaration syntax: array of array does not parse per Lines 242 to 249 in d3c28d6
It is apparently not only a parser deficiency but also a limitation of the AST, where currently any "decl" uses a single option size giving only a choice of singular type or sized array. |
Input:
The text was updated successfully, but these errors were encountered: