Files
kotlin-fork/backend.native/tests/external/codegen/box/functions/kt2929.kt
T
2017-03-13 15:31:46 +03:00

8 lines
133 B
Kotlin

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