Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
codegen
/
box
/
super
/
kt3492ClassProperty.kt
blob: 25feedb525f7baea01664c69dd5412cfe33ef09a [
file
] [
log
] [
blame
]
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