11 lines
185 B
Kotlin
Vendored
11 lines
185 B
Kotlin
Vendored
// "Replace with 'newFun()'" "true"
|
|
|
|
@Deprecated("", ReplaceWith("newFun()"))
|
|
fun oldFun(): String = ""
|
|
|
|
fun newFun(): String = ""
|
|
|
|
fun foo() {
|
|
val value = <caret>oldFun().length
|
|
}
|