Files
kotlin/compiler/testData/codegen/bytecodeText/ranges/inCollectionIndices.kt
2018-12-21 16:20:45 +01:00

10 lines
206 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
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