Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
dd4ca2cb43e932606f2630bd1f6f81f9cfb14a2e
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
lightClassByFqName
/
ExtendingInterfaceWithDefaultImpls.kt
blob: 5b7a0f950b0d37d550ba504b83195e5d53e4fc9b [
file
] [
log
] [
blame
]
// p.C
package
p
interface
A
{
fun a
()
=
"a"
}
interface
B
:
A
{
fun b
()
=
"b"
}
interface
C
:
B
{
fun c
()
=
"c"
}