Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
parameters.kt.after
blob: 670a0ad1c73620181ce8be4497ead60a51ffad3f [
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>
newFun
(
"x"
,
1
,
null
)
}