Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
removeRedundantSpreadOperator
/
simple.kt
blob: 5bef7dfcf3a01f2fb2aa5d5737da04bcba29e0c8 [
file
]
// "Remove redundant *" "true"
// LANGUAGE_VERSION: 1.4
fun takeVararg
(
vararg s
:
String
)
{}
fun test
(
strings
:
Array
<
String
>)
{
takeVararg
(
s
=
*<
caret
>
strings
)
}