]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/constexpr-array2.C
re PR c++/46348 ([C++0x] ICE with constexpr default constructor and array member)
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-array2.C
1 // PR c++/46348
2 // { dg-options -std=c++0x }
3
4 template<__SIZE_TYPE__ _Nw>
5 struct _Base
6 {
7 typedef unsigned long _WordT;
8
9 _WordT _M_w[_Nw];
10
11 constexpr
12 _Base()
13 : _M_w() { }
14 };
15
16 int main()
17 {
18 _Base<256> bs;
19 }