blob: 870b5fd4f58c18d01c1d39b115163b3431c86920 [file]
// "Replace with 'newFun(p1, p2.toString(), p3, p4, p5)'" "true"
interface I {
@Deprecated("", ReplaceWith("newFun(p1, p2.toString(), p3, p4, p5)"))
fun oldFun(p1: String, p2: Int = 0, p3: String? = null, p4: String = p1, p5: Int = p2)
fun newFun(p1: String, p2: String, p3: String?, p4: String, p5: Int)
}
fun foo(i: I) {
i.<caret>newFun("a", 0.toString(), null, "a", 0)
}