solidity/test/libsolidity/syntaxTests/inheritance/override/override_multiple_unresolved.sol
2019-10-30 17:31:33 +01:00

7 lines
169 B
Solidity

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