* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-array2.C
blobad6b12171ae3aa0cbd91e1f139e4746bab766f86
1 // PR c++/46348
2 // { dg-do compile { target c++11 } }
4 template<__SIZE_TYPE__ _Nw>
5   struct _Base
6   {
7     typedef unsigned long _WordT;
9     _WordT _M_w[_Nw];
11     constexpr
12     _Base()
13     : _M_w() { }
14   };
16 int main()
18   _Base<256> bs;