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