Files
kotlin-fork/compiler/testData/ir/irText/firProblems/dataObject.kt.txt
T
2023-05-15 08:16:24 +00:00

28 lines
510 B
Kotlin
Vendored

data object DataObject {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
override fun toString(): String {
return "DataObject"
}
override fun hashCode(): Int {
return -1155894359
}
override operator fun equals(other: Any?): Boolean {
when {
EQEQEQ(arg0 = <this>, arg1 = other) -> return true
}
when {
other !is DataObject -> return false
}
val tmp0_other_with_cast: DataObject = other as DataObject
return true
}
}