//KT-1897 When call cannot be resolved to any function, save information about types of arguments package a fun bar() {} fun foo(i: Int, s: String) {} fun test() { bar(xx) bar { } foo("", 1, xx) foo(r = xx, i = "", s = "") foo(i = 1, i = 1, s = 11) foo("", s = 2) foo(i = "", s = 2, 33) foo("", 1) {} foo("", 1) {} {} }