Files
kotlin-fork/js/js.translator/testData/box/expression/if/withEmptyBlocks.kt
T
2016-09-29 12:00:40 +03:00

9 lines
127 B
Kotlin
Vendored

package foo
fun box(): String {
var r = ""
if (r != "") else r += "O"
if (r == "O") r += "K" else;
return r
}