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

15 lines
228 B
Kotlin
Vendored

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