Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
codegen
/
box
/
super
/
kt3492TraitFun.kt
blob: 144e86036a368f5919d52d8901345c31ec5012ac [
file
] [
log
] [
blame
]
interface
ATrait
{
open fun foo2
():
String
=
"OK"
}
open
class
B
:
ATrait
{
}
class
C
:
B
()
{
inner
class
D
{
val foo
:
String
=
super
<
B
>
@C
.
foo2
()
}
}
fun box
()
:
String
{
val obj
=
C
().
D
();
return
obj
.
foo
}