URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [noncompile/] [scope.c] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
extern void abort (void); extern void exit (int); static int v = 3; f () { int v = 4; { extern int v; /* { dg-error "static" } */ if (v != 3) abort (); } } main () { f (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log