Files
kotlin/compiler/testData/codegen/box/dataClasses/unitComponent.kt
2018-10-09 15:33:04 +03:00

8 lines
169 B
Kotlin
Vendored

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