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