mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
27 lines
440 B
Solidity
27 lines
440 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
|
|
// g() -> 5
|