Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
removeForLoopIndices
/
simpleLoopWithIndices.kt
blob: e907ccc131b70cadc0f50155092404888e737c1b [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
(
bar
:
List
<
String
>)
{
for
((
i
<caret>
,
a
)
in
bar
.
withIndex
())
{
}
}