Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
super
/
kt3492TraitProperty.kt
blob: c4c3298afcbc8c3859b672639f2c8f4629eafdb2 [
file
] [
log
] [
blame
]
interface
A
{
open val foo
:
String
get
()
=
"OK"
}
open
class
B
:
A
{
}
class
C
:
B
()
{
inner
class
D
{
val foo
:
String
=
super
<
B
>
@C
.
foo
}
}
fun box
()
=
C
().
D
().
foo