Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9ca5f9c66ebdb7e907ed23a75ccf71e119b6392c
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
memberFunctionInGenericClass.kt.after
blob: 21cccc63c06f619d9a3d81b5700957560d797239 [
file
] [
log
] [
blame
]
// "Replace with 'newFun(t)'" "true"
interface
X
<
T
>
{
@Deprecated
(
""
,
ReplaceWith
(
"newFun(t)"
))
fun oldFun
(
t
:
T
)
fun newFun
(
t
:
T
)
}
fun foo
(
x
:
X
<
String
>)
{
x
.<
caret
>
newFun
(
"a"
)
}