1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
7 lines
121 B
Kotlin
7 lines
121 B
Kotlin
data class A(val arg: Any? = null)
|
|
|
|
fun box() : String {
|
|
val a = A()
|
|
val b = a
|
|
return if(b == a) "OK" else "fail"
|
|
} |