Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
super
/
kt3492ClassFun.kt
blob: 1dd8d1b2770a4c01ef5cd17642b43e909470ffee [
file
]
open
class
A
{
open fun foo2
():
String
=
"OK"
}
open
class
B
:
A
()
{
}
class
C
:
B
()
{
inner
class
D
{
val foo
:
String
=
super
<
B
>
@C
.
foo2
()
}
}
fun box
()
:
String
{
val obj
=
C
().
D
();
return
obj
.
foo
}