2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 921215-1.c
blob4fa3b7dfcccb633b4575e678659a8d4ae359ff94
1 main()
3 #ifndef NO_TRAMPOLINES
4 void p(void ((*f) (void ())))
6 void r()
8 foo ();
11 f(r);
14 void q(void ((*f)()))
16 f();
19 p(q);
20 #endif
21 exit(0);
24 foo(){}