Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/replaceCallWithReceiver.kt
T
2015-06-29 19:29:26 +03:00

10 lines
150 B
Kotlin
Vendored

// "Replace with 'this'" "true"
class C {
deprecated("", ReplaceWith("this"))
fun oldFun(): C = this
}
fun foo() {
C().<caret>oldFun()
}