Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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