mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Adds some more tests and groups all function call inheritance related together into single sub-directory.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
contract Base {
|
||||
function f(uint n) public returns (uint) {
|
||||
return 2 * n;
|
||||
}
|
||||
}
|
||||
|
||||
contract Child is Base {
|
||||
function g(uint n) public returns (uint) {
|
||||
return Base.f(n);
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// g(uint256): 4 -> 8
|
||||
|
||||
Reference in New Issue
Block a user