parse_structs_01.sol 144 B

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