mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
7 lines
119 B
Kotlin
Vendored
7 lines
119 B
Kotlin
Vendored
package pack
|
|
|
|
@Deprecated("", ReplaceWith("newFun(p + 1)", "newPack.newFun"))
|
|
fun oldFun(p: Int) {
|
|
newFun(p + 1)
|
|
}
|