Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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