multi_dim.sol 187 B

12345678
  1. // https://github.com/hyperledger/solang/issues/860
  2. contract c {
  3. function test() public pure returns (uint256 ret1) {
  4. uint256[3][] vec;
  5. vec.push([1, 2, 3]);
  6. return vec[1][1];
  7. }
  8. }