Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
kt3001.kt
blob: 0524528ca1ed82b15f8d1ac90bced99fea616fc1 [
file
]
interface
A
{
val result
:
String
}
class
Base
(
override
val result
:
String
)
:
A
open
class
Derived
:
A
by
Base
(
"OK"
)
class
Z
:
Derived
()
fun box
()
=
Z
().
result