Files
kotlin-fork/backend.native/tests/external/codegen/box/statics/inheritedPropertyInClassObject.kt
T
2017-03-13 15:31:46 +03:00

13 lines
240 B
Kotlin

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