brintos

brintos / llvm-project-archived public Read only

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