1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
6 lines
134 B
Kotlin
6 lines
134 B
Kotlin
data class A(val a: Boolean)
|
|
|
|
fun box() : String {
|
|
return if( A(true).hashCode()==1 && A(false).hashCode()==0 ) "OK" else "fail"
|
|
}
|