blob: 74842dfc706cd592462dc1f750c3f2a803fa0cbc [file] [log] [blame]
// "Replace with 'newFun(p1, p2)'" "true"
interface I {
@Deprecated("", ReplaceWith("newFun(p1, p2)"))
fun oldFun(p1: String = "", p2: Int = 0)
fun newFun(p1: String = "", p2: Int = 0, p3: Int = -1)
}
fun foo(i: I) {
i.<caret>oldFun()
}