Files
kotlin-fork/compiler/testData/ir/irText/declarations/fakeOverrides.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

36 lines
438 B
Plaintext
Vendored

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
}