Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
parameters.kt
blob: ed32397c2b3d5b170f99e6a2151bc4308299a8cc [
file
] [
log
] [
blame
]
// "Replace with 'newFun(b, a, null)'" "true"
@Deprecated
(
""
,
ReplaceWith
(
"newFun(b, a, null)"
))
fun oldFun
(
a
:
Int
,
b
:
String
)
{
}
fun newFun
(
b
:
String
,
a
:
Int
,
x
:
Any
?){}
fun foo
()
{
<caret>
oldFun
(
1
,
"x"
)
}