Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
145b5051f737bcd07fb6d5440a722cea8ba3f98c
/
.
/
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"
}