// "Replace with 'newFun()'" "true" // WITH_RUNTIME class C { @Deprecated("", ReplaceWith("newFun()")) fun oldFun(): Int { return newFun() } } fun newFun(): Int = 0 fun foo(): Int? { return getC()?.oldFun() } fun getC(): C? = null