Files
kotlin/compiler/testData/codegen/box/dataClasses/unitComponent.kt
2018-06-09 19:15:38 +03:00

8 lines
168 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_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()}"
}