1 // PR c++/49924
2 // { dg-do compile { target c++11 } }
3 
AA4 struct A { constexpr A() { } };
5 
6 struct B {
7   A array[1]; //non-static member array of a literal type w constexpr ctor
BB8   constexpr B() : array{} { } // here is the problem
9 };
10 
main()11 int main()
12 {
13   constexpr B b{};  // won't compile
14 }
15