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