mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
256 B
Solidity
17 lines
256 B
Solidity
contract Base {
|
|
function f(uint n) public returns (uint) {
|
|
return 2 * n;
|
|
}
|
|
}
|
|
|
|
contract Child is Base {
|
|
function g(uint n) public returns (uint) {
|
|
return f(n);
|
|
}
|
|
}
|
|
// ====
|
|
// compileToEwasm: also
|
|
// compileViaYul: also
|
|
// ----
|
|
// g(uint256): 4 -> 8
|