17 lines
250 B
Kotlin
Vendored
17 lines
250 B
Kotlin
Vendored
// "Replace with 'newFun()'" "true"
|
|
|
|
class C {
|
|
@Deprecated("", ReplaceWith("newFun()"))
|
|
fun oldFun(): Int {
|
|
return newFun()
|
|
}
|
|
}
|
|
|
|
fun newFun(): Int = 0
|
|
|
|
fun foo(): Int? {
|
|
return getC()?.<caret>oldFun()
|
|
}
|
|
|
|
fun getC(): C? = null
|