blob: 4367923fc299b8f946f54e586e45abd624626be3 [file] [log] [blame]
fun foo(): Int {
val a = "test"
val b = "test"
return a.compareTo(b)
}
fun box(): String = if(foo() == 0) "OK" else "Fail"