Files
kotlin/compiler/testData/codegen/box/staticFields/inheritedPropertyInClassObject.kt

13 lines
240 B
Kotlin
Vendored

open class Bar<T>(val prop: String)
class Foo {
companion object : Bar<Foo>("OK") {
val p = Foo.prop
val p2 = prop
val p3 = this.prop
}
val p4 = Foo.prop
val p5 = prop
}
fun box(): String = Foo.prop