FIR2IR: generate type arguments in delegation calls

This commit is contained in:
Mikhail Glukhikh
2021-12-03 13:40:44 +03:00
parent c57df1ac40
commit 85240bdb06
8 changed files with 32 additions and 21 deletions
@@ -19,7 +19,7 @@ class Test<TT : Any?> : IBase<TT> {
}
override fun <X : Any?> qux(t: TT, x: X) {
<this>.#<$$delegate_0>.qux</* null */>(t = t, x = x)
<this>.#<$$delegate_0>.qux<X>(t = t, x = x)
}
override val bar: Int