mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
30 lines
414 B
Solidity
30 lines
414 B
Solidity
|
contract A {
|
||
|
function f(uint256 a) public returns (uint256) {
|
||
|
return 2 * a;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
contract B {
|
||
|
function f() public returns (uint256) {
|
||
|
return 10;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
contract C is A, B {
|
||
|
function g() public returns (uint256) {
|
||
|
return f();
|
||
|
}
|
||
|
|
||
|
function h() public returns (uint256) {
|
||
|
return f(1);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ====
|
||
|
// compileViaYul: also
|
||
|
// ----
|
||
|
// g() -> 10
|
||
|
// h() -> 2
|