Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
genericMethod.kt.after
blob: c06b8ab2899fd6f965bf0e6937f4731e3ce9dc5d [
file
]
interface
G
<
T
>
{
fun foo
(
t
:
T
)
:
T
}
class
GC
()
:
G
<
Int
>
{
override
fun foo
(
t
:
Int
):
Int
{
<selection><caret>
throw
UnsupportedOperationException
()</
selection
>
}
}