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

15 lines
365 B
Solidity

contract C {
function f(uint x) internal { }
function f(uint x, uint y) internal { }
function f(uint x, uint y, uint z) internal { }
function call() internal {
f(1, 2);
f(1);
f({x: 1, y: 2});
f({y: 2});
}
}
// ----
// TypeError 9322: (241-242='f'): No matching declaration found after argument-dependent lookup.