blob: 9f8f0e4a10d2224b5444036ca89914cb48252d75 [file]
interface ILeft {
fun foo() {
}
val bar: Int
get(): Int {
return 1
}
}
interface IRight {
fun foo() {
}
val bar: Int
get(): Int {
return 2
}
}
class CBoth : ILeft, IRight {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
override fun foo() {
super<ILeft>.foo()
super<IRight>.foo()
}
override val bar: Int
override get(): Int {
return super<ILeft>.<get-bar>().plus(other = super<IRight>.<get-bar>())
}
}