Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49ce95ac6651db5c91015f9b0de5c3bff2185e61
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
lightClassByFqName
/
InheritingInterfaceDefaultImpls.kt
blob: f7d39d5b16202df03e18e2319a4c717161646af3 [
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"
}