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