Change Signature/Rename: Fix processing of named arguments when renaming parameter of extension function
#KT-8605 Fixed
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
fun Int.<caret>foo(a: Int, bb: Int): Int = a + bb
|
||||
|
||||
fun test() {
|
||||
0.foo(1, bb = 2)
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
fun Int.<caret>foo(a: Int, b: Int): Int = a + b
|
||||
|
||||
fun test() {
|
||||
0.foo(1, b = 2)
|
||||
}
|
||||
Reference in New Issue
Block a user