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

6 lines
126 B
Solidity
Raw Normal View History

2019-09-14 20:56:40 +00:00
contract A {
function a() public virtual;
2019-09-14 20:56:40 +00:00
}
// ----
// TypeError 3656: (0-47): Contract "A" should be marked as abstract.