blob: 04aebf99c140af5e1408b67f4ae8b956524d2647 [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>oldFun(1L)
}