Refactoring: change signature should affected expect/actual
#KT-33972 Fixed
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
// "Convert parameter to receiver" "true"
|
||||
expect fun f1(i: Int, <caret>s: String)
|
||||
@@ -0,0 +1,2 @@
|
||||
// "Convert parameter to receiver" "true"
|
||||
expect fun String.f1(i: Int<caret>)
|
||||
@@ -0,0 +1,2 @@
|
||||
//
|
||||
actual fun f1(i: Int, s: String) {}
|
||||
@@ -0,0 +1,2 @@
|
||||
//
|
||||
actual fun String.f1(i: Int) {}
|
||||
@@ -0,0 +1 @@
|
||||
actual fun f1(i: Int, s: String) {}
|
||||
@@ -0,0 +1 @@
|
||||
actual fun String.f1(i: Int) {}
|
||||
Reference in New Issue
Block a user