mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
231 B
Solidity
8 lines
231 B
Solidity
|
contract X {
|
||
|
int public override override testvar;
|
||
|
function test() internal override override returns (uint256);
|
||
|
}
|
||
|
// ----
|
||
|
// ParserError: (34-42): Override already specified.
|
||
|
// ParserError: (87-95): Override already specified.
|