blob: f9c08db42a0345d289d900aa92810a5d2f2b4532 [file] [log] [blame]
// "Replace with 'newFun(p)'" "true"
// WITH_RUNTIME
@Deprecated("", ReplaceWith("newFun(p)"))
fun oldFun(vararg p: Double){
newFun(p)
}
fun newFun(p: DoubleArray){}
fun foo() {
<caret>newFun(doubleArrayOf(1.0, 2.0))
}