Files
kotlin-fork/js/js.translator/testData/box/simple/positiveAndNegativeNumbers.kt
T
2017-07-19 12:24:09 +03:00

8 lines
143 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 990
package foo
fun box(): String {
val b = -3
val c = +3
return if ((c - b) == 6) "OK" else "fail"
}