Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
resources
/
intentionDescriptions
/
UseWithIndexIntention
/
before.kt.template
blob: 18c0bedebf50503f3b97e43cf84865bcd3e2e84f [
file
] [
log
] [
blame
]
fun foo
(
list
:
List
<
String
>)
{
<spot>
var
index
=
0
</
spot
>
for
(
s
in
list
)
{
print
(
s
.
substring
(<
spot
>
index
++</
spot
>))
}
}