Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
InheritingInterfaceDefaultImpls.kt
blob: 24d059976f7b67c1c3c9447db7497f198df30ccf [
file
]
// p.Inheritor
package
p
class
Inheritor
:
I
,
I2
{
fun f
()
{
}
override
fun g
()
{
}
}
interface
I
:
I1
{
fun g
()
}
interface
I1
{
fun foo
()
=
"foo"
}
interface
I2
{
fun bar
()
=
"bar"
}