blob: 41611c181c26123e25f705bc52d129701de0e437 [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 newFun()
}
fun bar(): Int = 0