Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
inspectionsLocal
/
removeRedundantSpreadOperator
/
multipleValuesWithOtherValues.kt.after
blob: aedebbd2298fbdc2d04f695ff7559de08fb4da84 [
file
]
fun foo
(
vararg x
:
String
)
{}
fun bar
()
{
foo
(
"abc"
,
"def"
,
"ghi"
,
"jkl"
)
}