parse_structs_07.sol 219 B

123456789101112131415
  1. contract c {
  2. s z;
  3. }
  4. struct s {
  5. bool f1;
  6. int32 f2;
  7. s2 f3;
  8. }
  9. struct s2 {
  10. bytes4 selector;
  11. s foo;
  12. }