Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
multiOverride.kt
blob: 7b36341464f65136770e73dd201f68d4e6b74ef7 [
file
]
interface
A
{
fun foo
(
value
:
String
)
:
Int
=
0
fun bar
()
:
String
=
"hello"
}
class
C
:
A
{
<caret>
}