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