Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
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"
}