Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
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