OSDN Git Service

* c-decl.c (pushdecl): When an extern declaration at block scope
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20030503-1.c
1 void foo ()
2 {
3   if (1)
4     goto foo;
5   else
6     for (;;)
7       {
8       foo:
9         bar ();
10         return;
11       }
12 }