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

7 lines
174 B
Solidity

contract A {
int public testvar;
function foo() internal override(N, Z) returns (uint256);
}
// ----
// DeclarationError 7920: (68-69): Identifier not found or not unique.