Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
twoValuesCombined.kt
blob: 48cabeecf389fc035717d7b81c2cc582147eb316 [
file
] [
log
] [
blame
]
// "Replace with 'newFun(p1 + p2)'" "true"
@Deprecated
(
""
,
ReplaceWith
(
"newFun(p1 + p2)"
))
fun oldFun
(
p1
:
Int
,
p2
:
Int
)
{}
fun newFun
(
n
:
Int
)
{}
fun foo
()
{
<caret>
oldFun
(
1
,
2
)
}