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

13 lines
458 B
Solidity
Raw Normal View History

abstract contract A {
2019-11-05 17:25:34 +00:00
function foo() internal virtual returns (uint256);
2019-09-16 12:33:43 +00:00
}
abstract contract B {
function foo() internal virtual returns (uint256);
2019-11-05 17:25:34 +00:00
function test() internal virtual returns (uint256);
2019-09-16 12:33:43 +00:00
}
abstract contract X is A, B {
function test() internal override returns (uint256) {}
2019-09-16 12:33:43 +00:00
}
// ----
// TypeError: (205-292): Derived contract must override function "foo". Function with the same name and parameter types defined in two or more base classes.