Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
override
/
ParentInheritsManyImplementations.kt
blob: 75d9920c5c9d36e9dcbf351c0237717f8483cff4 [
file
]
package
d
interface
A
{
fun foo
()
=
1
}
interface
B
{
fun foo
()
=
2
}
open
<!
MANY_INTERFACES_MEMBER_NOT_IMPLEMENTED
!>
class
C
<!>
:
A
,
B
{}
interface
E
{
fun foo
():
Int
}
class
D
:
C
()
{}