Files
kotlin-fork/compiler/testData/codegen/dataClasses/tostring/unitComponent.kt
T
2012-09-19 13:50:50 +03: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"
}