Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/safeCall/dropReceiverSafeCall.kt
T
2015-05-27 16:15:48 +03:00

13 lines
171 B
Kotlin
Vendored

// "Replace with 'newFun()'" "true"
class X {
@deprecated("", ReplaceWith("newFun()"))
fun oldFun(){}
}
fun newFun(){}
fun foo(x: X) {
x?.<caret>oldFun()
}