blob: 7cf25e57d856dfc90270f9eee586706214ef5595 [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 {
bar()
return <caret>newFun()
}
fun bar(): Int? = 0