blob: 742b3f65dd28a7ca315bc5f2edf92e6b1c9f904f [file]
val equals: KFunction2<Z, @ParameterName(name = "other") Any?, Boolean>
field = Z::equals
get
@JvmInline
value class Z {
val s: String
field = s
get
constructor(s: String) /* primary */ {
super/*Any*/()
/* <init>() */
}
override operator fun equals(other: Any?): Boolean {
when {
other !is Z -> return false
}
val tmp_0: Z = other /*as Z */
when {
EQEQ(arg0 = <this>.#s, arg1 = tmp_0.#s).not() -> return false
}
return true
}
override fun hashCode(): Int {
return <this>.#s.hashCode()
}
override fun toString(): String {
return "Z(" + "s=" + <this>.#s + ")"
}
}