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

13 lines
170 B
Kotlin
Vendored

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