solidity/test/libsolidity/syntaxTests/inheritance/override/override_multiple2.sol

20 lines
576 B
Solidity
Raw Normal View History

2019-09-16 12:33:43 +00:00
contract A {
int public testvar;
function foo() internal returns (uint256);
function test(uint8 _a) internal returns (uint256);
}
contract B {
function foo() internal returns (uint256);
}
contract C is A {
}
contract D is A, B, C {
function foo() internal override(A, B) returns (uint256);
}
// ----
2019-10-23 20:10:12 +00:00
// TypeError: (0-132): Contract "A" should be marked as abstract.
// TypeError: (133-191): Contract "B" should be marked as abstract.
// TypeError: (193-212): Contract "C" should be marked as abstract.
// TypeError: (213-297): Contract "D" should be marked as abstract.