Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
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