Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/wholeProject/function.before.OldDeclaration.kt
T
2015-09-04 18:19:31 +03:00

7 lines
119 B
Kotlin
Vendored

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