Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.dg / noncompile / scope.c
blob7f09c27cffd840286503b695658ed1f4c9f976e9
1 extern void abort (void);
2 extern void exit (int);
3 static int v = 3;
5 f ()
7 int v = 4;
9 extern int v; /* { dg-error "static" } */
10 if (v != 3)
11 abort ();
15 main ()
17 f ();
18 exit (0);