Change Signature: Substitute parameter references in default values of call expression arguments

This commit is contained in:
Alexey Sedunov
2015-04-24 20:45:57 +03:00
parent cbbeec3790
commit 14f63cdce5
24 changed files with 549 additions and 24 deletions
@@ -5,5 +5,5 @@ fun foo(a: Int, i: Int): Int {
}
fun test() {
foo(1, a + 1)
foo(1, 1 + 1)
}