Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
override
/
kt12467.kt
blob: 795e3ef9c54218675e9457fa3e18b4ee2936f37b [
file
]
// FIR_IDENTICAL
interface
A
{
fun test
()
{
}
}
interface
B
:
A
{
override
fun test
()
}
interface
C
:
A
interface
D
:
C
,
B
<!
ABSTRACT_MEMBER_NOT_IMPLEMENTED
!>
class
K
<!>
:
D