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