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