Files
kotlin/compiler/testData/codegen/dataClasses/unitComponent.kt
2012-09-07 19:00:02 +04:00

7 lines
142 B
Kotlin

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