1 // PR c++/51621 2 // { dg-do compile { target c++11 } } 3 4 struct A 5 { AA6 A() {} 7 }; 8 9 struct B 10 { 11 A a[1]; BB12 constexpr B() : a() {} // { dg-error "non-constant|non-.constexpr." } 13 }; 14