Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
defaultArguments
/
complexInheritance.kt
blob: 2cde3770187273659e30a06441582667772a1c1e [
file
] [
log
] [
blame
]
// FILE: A.kt
interface
A
:
B
fun box
():
String
=
object
:
A
{}.
foo
()
// FILE: B.kt
interface
Base
{
fun foo
(
s
:
String
=
"OK"
):
String
=
s
}
interface
B
:
Base