Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
21de67cac1bef9259daa407b68a12e178923aef3
/
.
/
compiler
/
testData
/
codegen
/
box
/
super
/
kt3492ClassProperty.kt
blob: 25feedb525f7baea01664c69dd5412cfe33ef09a [
file
]
open
class
A
{
open val foo
:
String
=
"OK"
}
open
class
B
:
A
()
{
}
class
C
:
B
()
{
inner
class
D
{
val foo
:
String
=
super
<
B
>
@C
.
foo
}
}
fun box
()
=
C
().
D
().
foo