Generate IrTypeParameter and IrValueParameter declarations
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
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
|
||||
Reference in New Issue
Block a user