aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-static4.C
blob: fa1a4c746d89231097dd0326efd073e7c5443885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do run { target c++11 } }

extern "C" void abort ();
extern int ar[2];

int f()
{
  if (ar[0] != 42 || ar[1] != 0)
    abort ();
  return 1;
}

int i = f();

int ar[2] = { 42, i };

int main()
{
}