mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
29 lines
474 B
Solidity
29 lines
474 B
Solidity
contract BaseBase {
|
|
function g() public virtual returns (uint256 r) {
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
|
|
contract Base is BaseBase {
|
|
function g() public virtual override returns (uint256 r) {
|
|
return 2;
|
|
}
|
|
}
|
|
|
|
|
|
contract Derived is Base {
|
|
function f() public returns (uint256 r) {
|
|
return BaseBase.g();
|
|
}
|
|
|
|
function g() public override returns (uint256 r) {
|
|
return 3;
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// g() -> 3
|
|
// f() -> 1
|