add main, fix warnings not intended
[cparser] / parsetest / cp_error011.c
1 struct bla { int a; };
2 void g(const struct bla);
3 void h(struct bla);
4 void f(void)
5 {
6         const struct bla x = { 0 };
7 }
8
9 int main(void) {
10         return 0;
11 }