mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
24 lines
604 B
Solidity
24 lines
604 B
Solidity
pragma experimental ABIEncoderV2;
|
|
|
|
contract C {
|
|
function g(uint[][2] calldata s) internal pure returns (uint, uint[] calldata) {
|
|
return (s[0][1], s[1]);
|
|
}
|
|
function f(uint, uint[][2] calldata s, uint) external pure returns (uint, uint) {
|
|
(uint x, uint[] calldata y) = g(s);
|
|
return (x, y[0]);
|
|
}
|
|
function g() public returns (uint, uint) {
|
|
uint[][2] memory x;
|
|
x[0] = new uint[](2);
|
|
x[1] = new uint[](2);
|
|
x[0][1] = 7;
|
|
x[1][0] = 8;
|
|
return this.f(4, x, 5);
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// g() -> 7, 8
|