blob: c23992e999fa8f4d8a818f11c27ecb85a216e2b4 (
plain) (
blame)
1
2
3
4
5
6
7
|
contract C {
function f(uint, uint) {}
function f(uint) {}
function g() { f(1, 2, 3); }
}
// ----
// TypeError: (80-81): No matching declaration found after argument-dependent lookup.
|