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

11 lines
431 B
Solidity
Raw Normal View History

interface A {
function foo() external returns (uint);
}
contract B {
uint public foo;
}
contract X is A, B {
}
// ----
// TypeError: (96-118): Derived contract must override function "foo". Two or more base classes define function with same name and parameter types. Since one of the bases defines a public state variable which cannot be overridden, you have to change the inheritance layout or the names of the functions.