Files
kotlin-fork/compiler/testData/codegen/box/intrinsics/rangeFromCollection.kt
T
2021-10-01 17:18:49 +03:00

8 lines
137 B
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
fun box(): String {
val list = ArrayList<IntRange>()
list.add(1..3)
list[0].start
return "OK"
}