mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
34 lines
965 B
Solidity
34 lines
965 B
Solidity
library L {
|
|
function f(uint256[] storage x) public pure returns (uint256) {
|
|
return 23;
|
|
}
|
|
}
|
|
contract C {
|
|
uint256[] y;
|
|
string x;
|
|
constructor() { y.push(42); }
|
|
function f() public view returns (uint256) {
|
|
return L.f(y);
|
|
}
|
|
function g() public returns (bool, uint256) {
|
|
uint256 ys;
|
|
assembly { ys := y.slot }
|
|
(bool success, bytes memory data) = address(L).delegatecall(abi.encodeWithSelector(L.f.selector, ys));
|
|
return (success, success ? abi.decode(data,(uint256)) : 0);
|
|
}
|
|
function h() public returns (bool, uint256) {
|
|
uint256 ys;
|
|
assembly { ys := y.slot }
|
|
(bool success, bytes memory data) = address(L).call(abi.encodeWithSelector(L.f.selector, ys));
|
|
return (success, success ? abi.decode(data,(uint256)) : 0);
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// EVMVersion: >homestead
|
|
// ----
|
|
// library: L
|
|
// f() -> 23
|
|
// g() -> true, 23
|
|
// h() -> true, 23
|