]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/constexpr-array2.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-array2.C
1 // PR c++/46348
2 // { dg-do compile { target c++11 } }
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 }
This page took 0.040804 seconds and 5 git commands to generate.