13 lines
202 B
Plaintext
Vendored
13 lines
202 B
Plaintext
Vendored
// "Replace with 'newFun(p)'" "true"
|
|
|
|
@deprecated("", ReplaceWith("newFun(p)"))
|
|
fun oldFun(vararg p: Long){
|
|
newFun(p)
|
|
}
|
|
|
|
fun newFun(p: LongArray){}
|
|
|
|
fun foo() {
|
|
<caret>newFun(longArrayOf(1L))
|
|
}
|