mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
21 lines
363 B
Solidity
21 lines
363 B
Solidity
|
contract A {
|
||
|
function foo() internal returns (uint256);
|
||
|
}
|
||
|
|
||
|
contract B is A {
|
||
|
function foo() internal override returns (uint256);
|
||
|
}
|
||
|
|
||
|
contract C is B {
|
||
|
function foo() internal override returns (uint256);
|
||
|
}
|
||
|
|
||
|
contract D is C {
|
||
|
function foo() internal override returns (uint256);
|
||
|
}
|
||
|
|
||
|
contract X is D {
|
||
|
function foo() internal override returns (uint256);
|
||
|
}
|
||
|
// ----
|