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

8 lines
178 B
Solidity

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