blob: d86b44e8cf12e571971be529b214d038b3ffc49b [file] [log] [blame]
// "Replace with 'newFun(p, p)'" "true"
@Deprecated("", ReplaceWith("newFun(p, p)"))
fun oldFun(p: String) {
newFun(p, p)
}
fun newFun(p1: String, p2: String){}
fun foo(p: Int) {
val p1 = "${p.bar()}"
<caret>newFun(p1, p1)
}
fun Int.bar(): String = ""