1 #include <cstdio> 2 3 struct A { 4 int i = 42; 5 }; 6 7 struct B { 8 A a; 9 }; 10 11 struct C { 12 B b; 13 }; 14 main()15 int main() { 16 C *c = new C[5]; 17 puts("break here"); 18 return 0; 19 } 20