Files
kotlin-fork/compiler/testData/codegen/box/innerNested/extenderNestedClass.kt
T
Ilya Goncharov 88abb3d6c9 [JS IR] Fix creating of classes extended from nested one
[JS IR] Extract getClassRef method

 ^KT-44950 fixed
2021-03-18 21:14:00 +03:00

10 lines
121 B
Kotlin
Vendored

object Foo {
open class Bar(val bar: String)
}
class Baz: Foo.Bar("OK")
fun box(): String {
return Baz().bar
}