blob: 410dfbe080bb29db34dd2a2a359848562052ee70 [file] [log] [blame]
// "Replace with 'newFun(p)'" "true"
// WITH_RUNTIME
@Deprecated("", ReplaceWith("newFun(p)"))
fun oldFun(vararg p: Long){
newFun(p)
}
fun newFun(p: LongArray){}
fun foo() {
<caret>newFun(longArrayOf(1L))
}