array_bounds_check_optimization.sol 155 B

1234567
  1. contract c {
  2. function test() public returns (int256[]) {
  3. int256[] array = new int256[](3);
  4. array[1] = 1;
  5. return array;
  6. }
  7. }