13 lines
275 B
Kotlin
Vendored
13 lines
275 B
Kotlin
Vendored
// "Replace with 'newFun(*p, 1)'" "true"
|
|
|
|
@deprecated("", ReplaceWith("newFun(*p, 1)"))
|
|
fun oldFun(vararg p: Int){
|
|
newFun(*p, 1)
|
|
}
|
|
|
|
fun newFun(vararg p: Int){}
|
|
|
|
fun foo(list1: List<Int>,list2: List<Int>) {
|
|
<caret>oldFun(*list1.toIntArray(), 0, *list2.toIntArray())
|
|
}
|