mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
22 lines
422 B
Solidity
22 lines
422 B
Solidity
|
contract A {
|
||
|
function f(uint256[] calldata a) external virtual returns (uint256) {
|
||
|
return a[0];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
contract B is A {
|
||
|
function f(uint256[] memory a) public override returns (uint256) {
|
||
|
return a[1];
|
||
|
}
|
||
|
|
||
|
function g() public returns (uint256) {
|
||
|
uint256[] memory m = new uint256[](2);
|
||
|
m[0] = 42;
|
||
|
m[1] = 23;
|
||
|
return A(this).f(m);
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// g() -> 23
|