blob: 032462576f8c764bad139cce4074974c8dbf6298 [file]
// "Replace with 'newFun(p, this)'" "true"
interface I
@Deprecated("", ReplaceWith("newFun(p, this)"))
fun I.plus(p: Int) {
newFun(p, this)
}
fun newFun(p: Int, i: I) { }
fun foo(i: I) {
<caret>newFun(1, i)
}