mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
404 B
Solidity
14 lines
404 B
Solidity
contract C {
|
|
function a(uint256) public returns (uint) { return 1; }
|
|
function a(uint8) public returns (uint) { return 1; }
|
|
|
|
function f() public returns (C) { return this; }
|
|
|
|
function g() internal returns (function(uint8) internal returns(uint))
|
|
{
|
|
return f().a;
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 6675: (282-287): Member "a" not unique after argument-dependent lookup in contract C.
|