mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
8 lines
145 B
Kotlin
Vendored
8 lines
145 B
Kotlin
Vendored
data class A(var x: Int, val z: Int?)
|
|
|
|
fun box(): String {
|
|
val a = A(1, null)
|
|
if("$a" != "A(x=1, z=null)") return "$a"
|
|
return "OK"
|
|
}
|