c++: prvalue of array type [PR111286]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-union7.C
blobb3147d9db50281254ede298b76f2fb3c71a6897e
1 // PR c++/105491
2 // { dg-do compile { target c++11 } }
4 struct V {
5   int m = 0;
6 };
7 struct S : V {
8   constexpr S(int) : b() { }
9   bool b;
11 struct W {
12   constexpr W() : s(0) { }
13   union {
14     S s;
15   };
17 constexpr W w;