Files
kotlin-fork/idea/testData/intentions/loopToCallChain/map/KT18816.kt
T
2017-12-18 18:10:32 +01:00

10 lines
182 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
// IS_APPLICABLE_2: false
fun test() {
val a = ArrayList<Int>()
<caret>for (i in 1..100) {
a.add(i + 1)
}
println(a)
}