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

15 lines
238 B
Kotlin
Vendored

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