mutability_04.sol 138 B

12345
  1. abstract contract test {
  2. function bar(int[] storage foo) internal view {
  3. foo[0] = 102;
  4. }
  5. }