Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
addForLoopIndices
/
string.kt
blob: 6fa3a2bd2a078b9e93beae356fe93761ff40efee [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
(
bar
:
String
)
{
for
(<
caret
>
a
in
bar
)
{
print
(
a
)
}
}