Fixed other parameter references broken in new parameter values in conventional Change Signature

This commit is contained in:
Valentin Kipyatkov
2020-03-26 14:40:07 +02:00
parent 0adfa0357a
commit 88cd129549
4 changed files with 76 additions and 73 deletions
@@ -0,0 +1,7 @@
fun <caret>foo(p1: Int, p2: Int) {
}
fun bar() {
foo(1, 1 * 1)
foo(2, 2 * 2)
}
@@ -0,0 +1,7 @@
fun <caret>foo(p1: Int) {
}
fun bar() {
foo(1)
foo(2)
}