Change Signature/Rename: Fix processing of named arguments when renaming parameter of extension function

#KT-8605 Fixed
This commit is contained in:
Alexey Sedunov
2015-10-26 20:10:46 +03:00
parent 18ed3055ee
commit 937b8725c6
4 changed files with 21 additions and 4 deletions
@@ -0,0 +1,5 @@
fun Int.<caret>foo(a: Int, bb: Int): Int = a + bb
fun test() {
0.foo(1, bb = 2)
}
@@ -0,0 +1,5 @@
fun Int.<caret>foo(a: Int, b: Int): Int = a + b
fun test() {
0.foo(1, b = 2)
}