blob: 358ad1b29a2627f48bc0c52a14bc16d8f6974e69 [file] [log] [blame]
// "Replace with 'newFun()'" "true"
// WITH_RUNTIME
@Deprecated("", ReplaceWith("newFun()"))
fun oldFun(p: Int): Int {
return newFun()
}
fun newFun(): Int = 0
fun foo(): Int {
return <caret>oldFun(bar())
}
fun bar(): Int = 0