KT-16905 Wrong IR for call to inner class constructor through typealias

This commit is contained in:
Dmitry Petrov
2017-03-17 14:44:16 +03:00
parent d05de88e3e
commit 64013171e8
4 changed files with 66 additions and 10 deletions
+9
View File
@@ -0,0 +1,9 @@
class Outer {
open inner class Inner
inner class InnerDerived0 : Inner()
inner class InnerDerived1 : OI()
}
typealias OI = Outer.Inner
fun test() = Outer().OI()