blob: e05526c17c2d956cdf8ac5c2160a616bfc335cad [file] [log] [blame]
// "Replace with 'newFun(p)'" "true"
// WITH_RUNTIME
@Deprecated("", ReplaceWith("newFun(p)"))
fun oldFun(vararg p: Byte){
newFun(p)
}
fun newFun(p: ByteArray){}
fun foo() {
<caret>oldFun(1, 2, 3)
}