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