blob: e11e62f026fef69494a7cc6d39260676733b295b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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
|