Change Signature: Implement improved call processing algorithm

#KT-8953 Fixed
 #KT-9525 Fixed
This commit is contained in:
Alexey Sedunov
2015-11-03 20:46:50 +03:00
parent b334f92748
commit 6ff955b66c
23 changed files with 471 additions and 204 deletions
@@ -4,7 +4,7 @@ import java.util.LinkedHashSet
// DISABLE-ERRORS
fun foo(x: Int, linkedHashSet: LinkedHashSet<Int>) {
foo(, java.util.LinkedHashSet<Int>());
foo(1, java.util.LinkedHashSet<Int>());
foo(, LinkedHashSet<Int>());
foo(1, LinkedHashSet<Int>());
foo(2, java.util.LinkedHashSet<Int>());
}