Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b7de3709e46eb073303a1e8aac4c22656e4f2863
/
.
/
compiler
/
testData
/
codegen
/
box
/
vararg
/
kt1978.kt
blob: 6d27ec3a3115204e3198e5e5bc67520cf49135d3 [
file
]
fun aa
(
vararg a
:
String
):
String
=
a
[
0
]
fun box
():
String
{
var
result
:
String
=
""
var
i
=
1
while
(
3
>
i
++)
{
result
=
aa
(
if
(
true
)
"OK"
else
"fail"
)
}
return
result
}