Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
vararg
/
doubleArrayRuntime.kt
blob: 056e1f25cd7a7e383ad3938f8968c056dcfce9e3 [
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>
oldFun
(
1.0
,
2.0
)
}