Files
kotlin-fork/compiler/testData/codegen/regressions/kt2062.kt
T
Andrey Breslav 5eaa5b396b Removing usages of tuples from test data
(KT-2358 Drop tuples)
 #KT-2358 In progress
2012-09-18 20:27:09 +04:00

6 lines
107 B
Kotlin

fun box(): String {
val a = if(true) {
}
return if (a.toString() == "Unit.VALUE") "OK" else "fail"
}