Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
genericMethod.kt.after
blob: d217b342bfc14f8b4989f3d178c23b69cea1006f [
file
] [
log
] [
blame
]
interface
G
<
T
>
{
fun foo
(
t
:
T
)
:
T
}
class
GC
()
:
G
<
Int
>
{
override
fun foo
(
t
:
Int
):
Int
{
<selection><caret>
TODO
(
"not implemented"
)
//To change body of created functions use File | Settings | File Templates.</selection>
}
}