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