mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
297 B
Solidity
12 lines
297 B
Solidity
contract A {
|
|
int public testvar;
|
|
function test() internal returns (uint256);
|
|
function test2() internal returns (uint256);
|
|
}
|
|
contract X is A {
|
|
int public override testvar;
|
|
function test() internal override returns (uint256);
|
|
function test2() internal override(A) returns (uint256);
|
|
}
|
|
// ----
|