Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
keepLineBreaks
/
simple.kt
blob: 30ed6acf9d528fce1d7de9cb58f0f447078da16a [
file
] [
log
] [
blame
]
// "Replace with 'newFun(p1, p2, p3)'" "true"
interface
X
{
@Deprecated
(
""
,
ReplaceWith
(
"newFun(p1, p2, p3)"
))
fun oldFun
(
p1
:
Int
,
p2
:
Int
,
p3
:
Int
)
fun newFun
(
p1
:
Int
,
p2
:
Int
,
p3
:
Int
)
}
fun foo
(
x
:
X
)
{
x
.<
caret
>
oldFun
(
1
,
2
,
3
)
}