blob: 8ce996330d8753b170e2a53f15e914e2077c7b5a [file] [log] [blame]
// "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>oldFun("a")
}