mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
26 lines
410 B
Solidity
26 lines
410 B
Solidity
contract C {
|
|
function f() public view returns (uint256) {
|
|
return msg.sender.balance;
|
|
}
|
|
}
|
|
|
|
|
|
contract D {
|
|
C c = new C();
|
|
|
|
constructor() payable {}
|
|
|
|
function f() public view returns (uint256) {
|
|
return c.f();
|
|
}
|
|
}
|
|
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// constructor(), 27 wei ->
|
|
// gas irOptimized: 178933
|
|
// gas legacy: 222977
|
|
// gas legacyOptimized: 169779
|
|
// f() -> 27
|