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

8 lines
156 B
Kotlin

data class A(var x: Int, y: Int, val z: Int?)
fun box(): String {
val a = A(1, 2, null)
if("$a" != "A(x=1, z=null)") return "$a"
return "OK"
}