* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-array14.C
blobb8eb08411c1e2c8362cce5e7c755d70652174321
1 // PR c++/66921
2 // { dg-do compile { target c++11 } }
4 template<typename T>
5 struct Holder {
6   constexpr static const int array[] = { 1, 2, 3 };
7   enum {F = array[0]};
8 };
9 class HI: public Holder<int> {};