IR: fix IrClassSymbol.starProjectedType

This commit is contained in:
Georgy Bronnikov
2020-11-12 15:21:08 +03:00
parent f5329b6f1d
commit 364773bf0f
12 changed files with 68 additions and 15 deletions
@@ -0,0 +1,14 @@
class Outer<OP> {
inner class Inner<IP>
fun <T> withInner(block: Inner<T>.() -> String) = Inner<T>().block()
}
fun <TT> withOuter(block: Outer<TT>.() -> String) = Outer<TT>().block()
fun box() = withOuter<Int> {
withInner<Boolean> {
"OK"
}
}