Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
vararg
/
doubleArrayRuntime.kt.after
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
))
}