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