parse_structs_11.sol 217 B

1234567891011
  1. contract test_struct_parsing {
  2. struct Foo {
  3. bool x;
  4. int32 y;
  5. }
  6. function f() public {
  7. Foo a = Foo();
  8. }
  9. }