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