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

14 lines
431 B
Solidity

contract A {
int public testvar;
function test() internal returns (uint256);
function test2() internal returns (uint256);
}
contract X is A {
int public override testvar;
function test() internal override returns (uint256);
function test2() internal override(A) returns (uint256);
}
// ----
// TypeError: (0-126): Contract "A" should be marked as abstract.
// TypeError: (127-288): Contract "X" should be marked as abstract.