Files
kotlin/compiler/testData/codegen/box/objects/thisRefToObjectInNestedClassConstructorCall.kt

9 lines
136 B
Kotlin
Vendored

open class Base(val s: String)
object Host {
class Derived : Base(this.foo())
fun foo() = "OK"
}
fun box() = Host.Derived().s