mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
459 B
Solidity
15 lines
459 B
Solidity
interface Super {
|
|
function test1() external returns (uint256);
|
|
function test2() external returns (uint256);
|
|
function test3() external returns (uint256);
|
|
}
|
|
|
|
interface Sub is Super {
|
|
function test1() external returns (uint256);
|
|
function test2() external override returns (uint256);
|
|
function test3() external override(Super) returns (uint256);
|
|
}
|
|
|
|
// ----
|
|
// TypeError 9456: (197-241): Overriding function is missing "override" specifier.
|