data class A {
val runA: @ExtensionFunctionType Function2
field = runA
get
constructor(runA: @ExtensionFunctionType Function2 = local fun A.(it: String) {
return Unit
}
) /* primary */ {
super/*Any*/()
/* () */
}
operator fun component1(): @ExtensionFunctionType Function2 {
return .#runA
}
fun copy(runA: @ExtensionFunctionType Function2 = .#runA): A {
return A(runA = runA)
}
override operator fun equals(other: Any?): Boolean {
when {
EQEQEQ(arg0 = , arg1 = other) -> return true
}
when {
other !is A -> return false
}
val tmp_0: A = other as A
when {
EQEQ(arg0 = .#runA, arg1 = tmp_0.#runA).not() -> return false
}
return true
}
override fun hashCode(): Int {
return .#runA.hashCode()
}
override fun toString(): String {
return "A(" + "runA=" + .#runA + ")"
}
}
data class B {
val x: Any
field = x
get
constructor(x: Any = { // BLOCK
local class {
constructor() /* primary */ {
super/*Any*/()
/* () */
}
}
()
}) /* primary */ {
super/*Any*/()
/* () */
}
operator fun component1(): Any {
return .#x
}
fun copy(x: Any = .#x): B {
return B(x = x)
}
override operator fun equals(other: Any?): Boolean {
when {
EQEQEQ(arg0 = , arg1 = other) -> return true
}
when {
other !is B -> return false
}
val tmp_1: B = other as B
when {
EQEQ(arg0 = .#x, arg1 = tmp_1.#x).not() -> return false
}
return true
}
override fun hashCode(): Int {
return .#x.hashCode()
}
override fun toString(): String {
return "B(" + "x=" + .#x + ")"
}
}