16 lines
226 B
Kotlin
Vendored
16 lines
226 B
Kotlin
Vendored
// "Replace with 'newFun(this)'" "true"
|
|
|
|
class C {
|
|
@Deprecated("", ReplaceWith("newFun(this)"))
|
|
fun oldFun(){}
|
|
}
|
|
|
|
fun C.newFun(c: C){}
|
|
|
|
fun foo() {
|
|
val bar = 0
|
|
getBar().<caret>oldFun()
|
|
}
|
|
|
|
fun getBar(): C = C()
|