Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
vararg
/
byteArrayRuntime.kt.after
blob: 0ede019b6ba9b3b834745d7717ae88826c56ffdf [
file
] [
log
] [
blame
]
// "Replace with 'newFun(p)'" "true"
// WITH_RUNTIME
@Deprecated
(
""
,
ReplaceWith
(
"newFun(p)"
))
fun oldFun
(
vararg p
:
Byte
){
newFun
(
p
)
}
fun newFun
(
p
:
ByteArray
){}
fun foo
()
{
<caret>
newFun
(
byteArrayOf
(
1
,
2
,
3
))
}