Files
kotlin-fork/backend.native/tests/external/codegen/box/unit/UnitValue.kt
T
2017-11-16 17:21:48 +03:00

6 lines
81 B
Kotlin

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