Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
kt3001.kt
blob: 0524528ca1ed82b15f8d1ac90bced99fea616fc1 [
file
] [
log
] [
blame
]
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