Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
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"
}