Files
kotlin/compiler/testData/codegen/box/unit/UnitValue.kt
2014-07-25 17:16:40 +04:00

6 lines
81 B
Kotlin

fun foo() {}
fun box(): String {
return if (foo() == Unit) "OK" else "Fail"
}