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