parse_structs_03.sol 152 B

1234567
  1. contract test_struct_parsing {
  2. struct Foo {
  3. bool memory a;
  4. uint calldata b;
  5. }
  6. }