re PR middle-end/71387 (ICE in emit_move_insn, at expr.c:3418 with -Og)
[platform/upstream/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 }