Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
overrideGenericFunction.kt.after
blob: faaaf25d70cc8fcaaa32b3d61ac8fc06380bbe6b [
file
]
interface
A
<
T
>
{
fun foo
(
value
:
T
)
:
Unit
=
println
(
value
)
}
class
C
:
A
<
C
>
{
override
fun foo
(
value
:
C
)
{
<selection><caret>
super
.
foo
(
value
)</
selection
>
}
}