Files
kotlin-fork/js/js.translator/testData/box/simple/positiveAndNegativeNumbers.kt
T
2018-09-12 09:49:25 +03:00

8 lines
144 B
Kotlin
Vendored

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