* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-recursion3.C
blob29230e93e17354b6a13a7595f171b4495ff8e03a
1 // { dg-do compile { target c++11 } }
3 constexpr int Foo (int i)
5   return (i ? Foo (i - 1): 0) + i;
8 static int a = Foo (0);
9 static int b = Foo (1);
10 static int d = Foo (3);
11 static int c = Foo (2);
12 static int e = Foo (4);
13 static int g = Foo (6);
14 static int f = Foo (5);