blob: 031e612450cc875cfff6c3ac16416e92f1ee17f9 [file]
open class Base {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
override operator fun equals(other: Any?): Boolean {
return EQEQEQ(arg0 = <this>, arg1 = other)
}
}
class Child1 : Base, I {
constructor() /* primary */ {
super/*Base*/()
/* <init>() */
}
}
class Child2 : Base, I {
constructor() /* primary */ {
super/*Base*/()
/* <init>() */
}
}
interface I {
}