parse_structs_02.sol 145 B

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