Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
argumentSideEffects
/
complexExpressionNotUsed3Runtime.kt
blob: 358ad1b29a2627f48bc0c52a14bc16d8f6974e69 [
file
] [
log
] [
blame
]
// "Replace with 'newFun()'" "true"
// WITH_RUNTIME
@Deprecated
(
""
,
ReplaceWith
(
"newFun()"
))
fun oldFun
(
p
:
Int
):
Int
{
return
newFun
()
}
fun newFun
():
Int
=
0
fun foo
():
Int
{
return
<caret>
oldFun
(
bar
())
}
fun bar
():
Int
=
0