blob: 79343c34089cbbd64bfe5b3cf4f2e2819ee1342f [file]
// "Replace with 'newFun(this, s)'" "true"
interface I {
@Deprecated("", ReplaceWith("newFun(this, s)"))
fun oldFun(s: String)
}
fun newFun(i: I, s: String){}
fun I.foo() {
with("a") {
<caret>oldFun(this)
}
}