Files
kotlin-fork/compiler/testData/ir/irText/declarations/parameters/delegatedMembers.kt
T

7 lines
140 B
Kotlin
Vendored

interface IBase<T> {
fun foo(x: Int)
val bar: Int
fun <X> qux(t: T, x: X)
}
class Test<TT>(impl: IBase<TT>) : IBase<TT> by impl