solidity/test/libsolidity/syntaxTests/abstract/unimplemented_functions_inherited.sol

8 lines
156 B
Solidity

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