2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / 20000707-1.c
blob5328dfa63d9e25a8b21b720580af0c46ed981079
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -Wall" } */
4 extern void foo(void *here);
5 extern inline void bar(void)
7 __label__ here;
8 foo(&&here);
9 here:
13 void baz(void)
15 bar();