mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
31 lines
536 B
Solidity
31 lines
536 B
Solidity
contract C {
|
|
function balance() public returns (uint256) {
|
|
return 1;
|
|
}
|
|
|
|
function transfer(uint256 amount) public returns (uint256) {
|
|
return amount;
|
|
}
|
|
}
|
|
|
|
|
|
contract D {
|
|
function f() public returns (uint256) {
|
|
return (new C()).balance();
|
|
}
|
|
|
|
function g() public returns (uint256) {
|
|
return (new C()).transfer(5);
|
|
}
|
|
}
|
|
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// f() -> 1
|
|
// gas irOptimized: 86492
|
|
// gas legacy: 114412
|
|
// g() -> 5
|
|
// gas irOptimized: 86588
|
|
// gas legacy: 114872
|