solidity/test/libsolidity/syntaxTests/abstract/unimplemented_functions.sol
2019-12-02 21:59:00 +01:00

6 lines
121 B
Solidity

contract A {
function a() public virtual;
}
// ----
// TypeError: (0-47): Contract "A" should be marked as abstract.