aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/nestfunc-7.c
blob: 5b3d34b8dce90204a82950ff992649e23ae158a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
struct A
{
  int one;
  int two;
  int three;
  int four;
  int five;
  int six;
};

static int test (void)
{
  int base;

  struct A Foo (void)
    {
      struct A a;

      a.one = base + 1;
      a.two = base + 2;
      a.three = base + 3;
      a.four = base + 4;
      a.five = base + 5;
      a.six = base + 6;

      return a;
    }

  base = 10;
  struct A a = Foo ();

  return (a.one == 11
	  && a.two == 12
	  && a.three == 13
	  && a.four == 14
	  && a.five == 15
	  && a.six == 16);
}

int main (void)
{
  return !test ();
}