solidity/test/libsolidity/syntaxTests/inheritance/interface/single_parent.sol
2020-01-22 09:40:40 -05:00

6 lines
95 B
Solidity

interface Super {
function test() external returns (uint256);
}
interface Sub is Super {}