solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/418_interface_inheritance.sol

7 lines
95 B
Solidity

interface A {
}
interface I is A {
}
// ----
// TypeError: (31-32): Interfaces cannot inherit.