Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/callChainBug.kt
T
2015-05-28 13:45:07 +03:00

11 lines
187 B
Kotlin
Vendored

// "Replace with 'newFun()'" "true"
@deprecated("", ReplaceWith("newFun()"))
fun oldFun(): String = ""
fun newFun(): String = ""
fun foo() {
val value = <caret>oldFun().length()
}