Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/dataClasses/tostring/unitComponent.kt
T
2013-02-11 02:01:40 +04:00

7 lines
132 B
Kotlin

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