Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
override
/
FakeOverrideDifferentDeclarationSignatures.kt
blob: aba4ace8df5c0c51376c4fc11e050efa3e1c793e [
file
]
interface
A
{
fun f
():
String
=
"string"
}
open
class
B
{
open fun f
():
CharSequence
=
"charSequence"
}
<!
MANY_IMPL_MEMBER_NOT_IMPLEMENTED
!>
class
C
<!>
:
B
(),
A
val obj
:
A
=
<!
MANY_IMPL_MEMBER_NOT_IMPLEMENTED
!>
object
<!>
:
B
(),
A
{}