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

9 lines
174 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
fun box(): String {
return justPrint(9.compareTo(4))
}
fun justPrint(value: Int): String {
return if (value > 0) "OK" else "Fail $value"
}