// "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") { oldFun(this) } }