13 lines
207 B
Plaintext
Vendored
13 lines
207 B
Plaintext
Vendored
// "Replace with 'newFun(p)'" "true"
|
|
|
|
@deprecated("", ReplaceWith("newFun(p)"))
|
|
fun oldFun(vararg p: Byte){
|
|
newFun(p)
|
|
}
|
|
|
|
fun newFun(p: ByteArray){}
|
|
|
|
fun foo() {
|
|
<caret>newFun(byteArrayOf(1, 2, 3))
|
|
}
|