Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
codegen
/
box
/
objects
/
kt4086.kt
blob: 2aa1ca343d801f7bb537a0fc270de4dc7decd9a0 [
file
]
interface
N
open
class
Base
(
n
:
N
)
class
Derived
:
Base
(
object
:
N
{})
{
}
fun box
()
:
String
{
Derived
()
return
"OK"
}