// PR c++/96282 // { dg-do compile { target c++11 } } struct e { bool v = true; }; template struct b { e m[N]; }; template struct t : b { constexpr t() : b() {} }; constexpr t<1> h1; constexpr t<42> h2;