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