]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/constexpr-array4.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-array4.C
1 // PR c++/49924
2 // { dg-do compile { target c++11 } }
3
4 struct A { constexpr A() { } };
5
6 struct B {
7 A array[1]; //non-static member array of a literal type w constexpr ctor
8 constexpr B() : array{} { } // here is the problem
9 };
10
11 int main()
12 {
13 constexpr B b{}; // won't compile
14 }
This page took 0.037183 seconds and 5 git commands to generate.