Files
kotlin/compiler/testData/codegen/box/unit/unitClassObject.kt
2013-12-04 15:57:52 +04:00

14 lines
238 B
Kotlin

fun box(): String {
Unit
val a = Unit
val b = Unit
if (a != b) return "Fail a != b"
if (Unit != Unit) return "Fail Unit != Unit"
if (a.VALUE != Unit.VALUE) return "Fail a.VALUE != Unit.VALUE"
return "OK"
}