Files
kotlin/compiler/testData/codegen/dataClasses/unitComponent.kt
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

7 lines
149 B
Kotlin

data class A(val x: Unit)
fun box(): String {
val a = A(Unit.VALUE)
return if (a.component1() is Unit) "OK" else "Fail ${a.component1()}"
}