mirror of
https://github.com/nArnoSNES/tcc-65816.git
synced 2024-10-31 11:04:55 +00:00
18 lines
125 B
C
18 lines
125 B
C
int v = 3;
|
|
|
|
f ()
|
|
{
|
|
int v = 4;
|
|
{
|
|
extern int v;
|
|
if (v != 3)
|
|
exit (v);
|
|
}
|
|
}
|
|
|
|
main ()
|
|
{
|
|
f ();
|
|
exit (0);
|
|
}
|