solidity/test/libsolidity/syntaxTests/memberLookup/member_value_not_unique.sol
2022-04-01 23:41:18 -05:00

14 lines
472 B
Solidity

contract C {
function value(uint256) public returns (uint) { return 1; }
function value(uint8) public returns (uint) { return 1; }
function f() public returns (C) { return this; }
function g() internal returns (function(uint8) internal returns(uint))
{
return f().value;
}
}
// ----
// TypeError 6675: (290-299='f().value'): Member "value" not unique after argument-dependent lookup in contract C - did you forget the "payable" modifier?