13 lines
215 B
Plaintext
Vendored
13 lines
215 B
Plaintext
Vendored
// "Replace with 'newFun(p, this)'" "true"
|
|
|
|
@deprecated("", ReplaceWith("newFun(p, this)"))
|
|
fun String.oldFun(p: Int) {
|
|
newFun(p, this)
|
|
}
|
|
|
|
fun newFun(p: Int, s: String){}
|
|
|
|
fun foo() {
|
|
<caret>newFun(1, "")
|
|
}
|