blob: c59d1af6a6fc03093269d36547301d3030731d7e [file] [log] [blame]
// "Replace with 'newFun(this, s)'" "true"
// WITH_RUNTIME
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)
}
}