blob: 35a49aaa6e7f204010649e812b136834ee6505c0 [file] [log] [blame]
interface IFooStr {
abstract fun foo(x: String)
}
interface IBar {
abstract val bar: Int
abstract get
}
abstract class CFoo<T : Any?> {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun foo(x: T) {
}
}
class Test1 : CFoo<String>, IFooStr, IBar {
constructor() /* primary */ {
super/*CFoo*/<String>()
/* <init>() */
}
override val bar: Int
field = 42
override get
}