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

9 lines
158 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
fun foo(): Int {
val a = "test"
val b = "test"
return a.compareTo(b)
}
fun box(): String = if(foo() == 0) "OK" else "Fail"