array_dimensions_04.sol 132 B

1234567
  1. abstract contract foo {
  2. struct bar {
  3. int32 x;
  4. }
  5. bar[1 % 0] x;
  6. }