Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
super
/
kt3492ClassFun.kt
blob: a75140c80b179a617f25afdd33810ce2c460a5a6 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
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
}