aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/930506-2.c
blob: bc982acffba9d89e29c71a8fc1ff9a76220fd8a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-require-effective-target 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(___);} );
}