recursive_04.sol 85 B

1234
  1. abstract contract Recursive {
  2. struct B { B[] b; }
  3. struct C { B[] b; C c; }
  4. }