Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
145b5051f737bcd07fb6d5440a722cea8ba3f98c
/
.
/
compiler
/
testData
/
codegen
/
box
/
statics
/
inheritedPropertyInObject.kt
blob: 4d00f209f617336ff17a1ff2b2d037137bef87aa [
file
]
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