mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
11 lines
219 B
Kotlin
Vendored
11 lines
219 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
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
|
|
|