88abb3d6c9
[JS IR] Extract getClassRef method ^KT-44950 fixed
10 lines
121 B
Kotlin
Vendored
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
|
|
}
|