solidity/test/libsolidity/syntaxTests/inheritance/override/override_multiple_unresolved.sol
2022-04-01 23:41:18 -05:00

7 lines
178 B
Solidity

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