Change Signature: Do not process calls with unmatched arguments/parameters

This commit is contained in:
Alexey Sedunov
2015-06-29 17:45:05 +03:00
parent 4cc2a57aed
commit 9e82411e78
11 changed files with 51 additions and 28 deletions
@@ -2,8 +2,8 @@
// DISABLE-ERRORS
fun foo(x: Int, i: Int) {
foo(, 4);
foo();
foo(1, 4);
foo(1, 4);
foo(2, 4);
foo(2, 3, sdsd);
}