solidity/test/libsolidity/syntaxTests/abstract/unimplemented_functions_inherited.sol
2019-11-01 14:54:47 -05:00

8 lines
143 B
Solidity

abstract contract A {
function a() public;
}
contract B is A {
}
// ----
// TypeError: (49-68): Contract "B" should be marked as abstract.