// PR c++/93618 // { dg-do compile { target c++11 } } // { dg-options "" } template struct C { ~C () = default; T *p = nullptr; }; class A { struct B { int c; C d[]; }; void foo (int f) { B s; s.c = f; } B e; };