Files
kotlin-fork/compiler/testData/ir/irText/declarations/parameters/delegatedMembers.kt
T
2024-02-16 10:19:38 +00:00

9 lines
158 B
Kotlin
Vendored

// FIR_IDENTICAL
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