Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
java8Overrides
/
abstractVsAbstract.kt
blob: 8af8a90df9154a1de7d99ca9b3dfcef3a25ee192 [
file
]
// FIR_IDENTICAL
interface
ILeft
{
fun foo
()
}
interface
IRight
{
fun foo
()
}
interface
IDerived
:
ILeft
,
IRight
<!
ABSTRACT_MEMBER_NOT_IMPLEMENTED
!>
class
CDerived
<!>
:
ILeft
,
IRight
abstract
class
ADerived
:
ILeft
,
IRight