another compound literal test
[cparser] / parsetest / compoundlit2.c
1 int main(void) {
2         int k = sizeof( (int[]) { 1, 2, 3 } ) / sizeof(int);
3
4         if(k != 3)
5                 return 1;
6
7         return 0;
8 }