Move: Convert implicit receiver to this when moving class member to companion object
#KT-11483 Fixed
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
fun println(a: Any) {}
|
||||
|
||||
class InsertThis {
|
||||
val v1 = 1
|
||||
fun <caret>f() {
|
||||
println(v1)
|
||||
}
|
||||
fun use() { f() }
|
||||
}
|
||||
Reference in New Issue
Block a user