solidity/test/libsolidity/syntaxTests/inheritance/interface/single_parent.sol
2021-04-20 17:38:29 +02:00

7 lines
103 B
Solidity

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