Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
replaceCallWithArgument.kt
blob: a03540824f03aa459ab1771e922e98ad7e8f1e6b [
file
]
// "Replace with 'p'" "true"
@Deprecated
(
""
,
ReplaceWith
(
"p"
))
fun oldFun
(
p
:
Int
):
Int
=
p
fun foo
()
{
<caret>
oldFun
(
0
)
}