* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ex4.C
blob43e738842f4a56d38745f9732a4fbf382f6f370c
1 // { dg-do compile { target c++11 } }
3 struct A
5   constexpr A(int) { }
6   constexpr operator int() const { return 1; };
7 };
9 template <class T>
10 struct B
12   static constexpr A a = A(1);
13   int ar[a];
16 B<int> b;