solidity/test/libsolidity/syntaxTests/abstract/interface.sol
2022-04-01 23:41:18 -05:00

5 lines
181 B
Solidity

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