solidity/test/libsolidity/syntaxTests/inheritance/interface/single_parent.sol

6 lines
95 B
Solidity
Raw Normal View History

2020-01-02 21:28:07 +00:00
interface Super {
function test() external returns (uint256);
}
interface Sub is Super {}