solidity/test/libsolidity/syntaxTests/abstract/interface.sol
2019-11-05 13:55:31 +01:00

5 lines
149 B
Solidity

interface B { }
abstract interface A { }
// ----
// TypeError: (16-40): Interfaces do not need the "abstract" keyword, they are abstract implicitly.