Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/callChainBug.kt
T
2015-09-04 18:19:31 +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()
}