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