1#ifndef NO_TRAMPOLINES
2int f1()
3{
4  { int ___() { foo(1); } bar(___); }
5  return( { int ___() { foo(2); } bar(___);} );
6}
7
8int f2(int j)
9{
10  { int ___() { foo(j); } bar(___); }
11  return( { int ___() { foo(j); } bar(___);} );
12}
13#else
14int x;
15#endif
16