mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
7 lines
121 B
Kotlin
Vendored
7 lines
121 B
Kotlin
Vendored
data class A(val arg: Any? = null)
|
|
|
|
fun box() : String {
|
|
val a = A()
|
|
val b = a
|
|
return if(b == a) "OK" else "fail"
|
|
} |