2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / scope-1.c
blobcedd0b48ccb2026c5b4ae98759f2c4fe9a6f40a0
1 int v = 3;
3 f ()
5 int v = 4;
7 extern int v;
8 if (v != 3)
9 abort ();
13 main ()
15 f ();
16 exit (0);