Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/argumentSideEffects/complexExpressionNotUsed3Runtime.kt
T
2015-09-04 18:19:31 +03:00

15 lines
221 B
Kotlin
Vendored

// "Replace with 'newFun()'" "true"
@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