mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
439 B
Solidity
12 lines
439 B
Solidity
abstract contract A {
|
|
function test() external virtual returns (uint256);
|
|
function test2() external returns (uint256);
|
|
}
|
|
abstract contract X is A {
|
|
function test() external returns (uint256);
|
|
function test2() external override(A) returns (uint256);
|
|
}
|
|
// ----
|
|
// TypeError: (151-194): Overriding function is missing 'override' specifier.
|
|
// TypeError: (76-120): Trying to override non-virtual function. Did you forget to add "virtual"?
|