fixed cast parsing bug

i hope casts weren't at a different precedence level for a reason
This commit is contained in:
pommicket 2022-02-02 23:05:33 -05:00
parent be9a3b4bd5
commit 04c5e1af8a
3 changed files with 3 additions and 8 deletions

View file

@ -46,7 +46,7 @@
/* long b; */
/* } x1[] = {0x1234567890, 1ul<<60|1ul<<3, 77}; */
/* int y1 = 0x12345678; */
typedef int R[*(int*)3];
typedef int R[sizeof *(int*)"hello"];
/* struct { */
/* int x[2], y; */