tcc-65816/test/tests/931002-1.c
2017-06-09 13:52:12 +02:00

29 lines
222 B
C

f (void (*func) ())
{
func ();
}
void t0 ()
{
}
void t1 ()
{
f (t0);
}
void t2 ()
{
t1 ();
}
main ()
{
#ifndef NO_TRAMPOLINES
t1 ();
t1 ();
t2 ();
#endif
exit (0);
}