add main, fix warnings not intended
[cparser] / parsetest / cp_error050.c
1 int main(void)
2 {
3         // This is sizeof of a compound literal, not sizeof a type followed by garbage
4         return sizeof(int[]){ 0, 1, 2 } != 3*sizeof(int);
5 }