Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/callChainBug.kt
T
2015-10-14 20:39:35 +03:00

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
}