mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-07 08:31:28 +00:00
11 lines
197 B
Kotlin
Vendored
11 lines
197 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
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
|