8sa1-gcc/gcc/testsuite/gcc.c-torture/compile/930506-2.c
Jeff Law 921e5a0eb4 Initial revision
From-SVN: r14840
1997-08-19 01:34:40 -06:00

16 lines
247 B
C

#ifndef NO_TRAMPOLINES
int f1()
{
{ int ___() { foo(1); } bar(___); }
return( { int ___() { foo(2); } bar(___);} );
}
int f2(int j)
{
{ int ___() { foo(j); } bar(___); }
return( { int ___() { foo(j); } bar(___);} );
}
#else
int x;
#endif