mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
7 lines
163 B
Kotlin
Vendored
7 lines
163 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
fun test1(a: String) = a in "alpha" .. "omega"
|
|
fun test2(a: String) = a !in "alpha" .. "omega"
|
|
|
|
// 0 rangeTo
|
|
// 0 contains
|
|
// 4 compareTo |