Files
kotlin-fork/compiler/testData/codegen/box/functions/kt2929.kt
T
2018-07-03 19:51:58 +03:00

8 lines
133 B
Kotlin
Vendored

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