Files
kotlin/compiler/testData/codegen/box/staticFields/inheritedPropertyInObject.kt
2014-11-24 13:10:59 +03:00

8 lines
159 B
Kotlin

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