Files
kotlin-fork/compiler/testData/codegen/tuples/UnitValue.kt
T
Andrey Breslav dee5152f9b Supporting Unit.VALUE, to replace #()
#KT-2358 In Progress
2012-09-18 20:27:09 +04:00

5 lines
86 B
Kotlin

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