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