Files
kotlin-fork/compiler/testData/codegen/bytecodeText/ranges/inCollectionIndices.kt
T
2021-10-25 21:21:40 +03:00

9 lines
180 B
Kotlin
Vendored

fun testCollection(i: Int, xs: List<Any>) = i in xs.indices
fun testLongWithCollection(i: Long, xs: List<Any>) = i in xs.indices
// 0 getIndices
// 0 contains
// 2 size
// 1 I2L