Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
super
/
kt3492TraitProperty.kt
blob: c4c3298afcbc8c3859b672639f2c8f4629eafdb2 [
file
]
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