mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
174 B
Solidity
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.
|