Files
kotlin/idea/testData/quickfix/deprecatedSymbolUsage/replaceCallWithReceiver.kt
2015-09-04 18:19:31 +03:00

10 lines
151 B
Kotlin
Vendored

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