solidity/test/libsolidity/semanticTests/various/value_complex.sol
Daniel Kirchner 44da8507b1 Change default EVM version to Shanghai.
Co-authored-by: Rodrigo Q. Saramago <rodrigoqsaramago@gmail.com>
2023-05-08 16:34:23 +02:00

27 lines
564 B
Solidity

contract helper {
function getBalance() public payable returns (uint256 myBalance) {
return address(this).balance;
}
}
contract test {
helper h;
constructor() payable {
h = new helper();
}
function sendAmount(uint256 amount) public payable returns (uint256 bal) {
uint256 someStackElement = 20;
return h.getBalance{value: amount + 3, gas: 1000}();
}
}
// ----
// constructor(), 20 wei ->
// gas irOptimized: 174345
// gas legacy: 252286
// gas legacyOptimized: 180346
// sendAmount(uint256): 5 -> 8