Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
overrideNonUnitFunction.kt.after
blob: 2d0f95fa907d18a8ec07138bc2126bcbe9d8c426 [
file
]
interface
A
{
fun foo
(
value
:
String
)
:
Int
=
0
}
class
C
:
A
{
override
fun foo
(
value
:
String
):
Int
{
<selection><caret>
return
super
.
foo
(
value
)</
selection
>
}
}