Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/wholeProject/function.before.OldDeclaration.kt
T
2015-05-27 16:15:47 +03:00

7 lines
119 B
Kotlin
Vendored

package pack
@deprecated("", ReplaceWith("newFun(p + 1)", "newPack.newFun"))
fun oldFun(p: Int) {
newFun(p + 1)
}