Files
kotlin-fork/compiler/testData/codegen/box/controlStructures/kt2291.kt
T
2018-06-09 19:15:38 +03:00

8 lines
116 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
fun box(): String {
1 in 1.rangeTo(10)
1..10
'h' in 'A'.rangeTo('Z')
return "OK"
}