Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
surroundWithArrayOfForNamedArgumentsToVarargs
/
simpleNamedArgumentToVararg.kt
blob: 566dcba3857926a97a8a49536f45130a4dda72a6 [
file
]
// "Surround with *arrayOf(...)" "true"
// LANGUAGE_VERSION: 1.2
fun foo
(
vararg s
:
String
)
{}
fun test
()
{
foo
(
s
=
<caret>"value"
)
}