Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
optionalParameters
/
dropAll.kt
blob: 74842dfc706cd592462dc1f750c3f2a803fa0cbc [
file
] [
log
] [
blame
]
// "Replace with 'newFun(p1, p2)'" "true"
interface
I
{
@Deprecated
(
""
,
ReplaceWith
(
"newFun(p1, p2)"
))
fun oldFun
(
p1
:
String
=
""
,
p2
:
Int
=
0
)
fun newFun
(
p1
:
String
=
""
,
p2
:
Int
=
0
,
p3
:
Int
=
-
1
)
}
fun foo
(
i
:
I
)
{
i
.<
caret
>
oldFun
()
}