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

7 lines
103 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 {}
// ----