mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
12 lines
210 B
Kotlin
Vendored
12 lines
210 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun testCharSequence(i: Int, cs: CharSequence) = i in cs.indices
|
|
|
|
fun testLongWithCharSequence(i: Long, cs: CharSequence) = i in cs.indices
|
|
|
|
// 0 getIndices
|
|
// 0 contains
|
|
// 2 length
|
|
// 1 I2L
|
|
|