13 lines
190 B
Kotlin
Vendored
13 lines
190 B
Kotlin
Vendored
// "Replace with 'newFun(p)'" "true"
|
|
|
|
@deprecated("", ReplaceWith("newFun(p)"))
|
|
fun oldFun(vararg p: Short){
|
|
newFun(p)
|
|
}
|
|
|
|
fun newFun(p: ShortArray){}
|
|
|
|
fun foo() {
|
|
<caret>oldFun(1)
|
|
}
|