- when parsing compound types, do NOT destroy old declarations if
[cparser] / parsetest / cp_error036.c
1 static void f(void) {
2 }
3
4 void (*ptr)(void);
5
6 void init(void) {
7         ptr = f;
8 }
9
10 int main(void)
11 {
12         return 0;
13 }