Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
argumentSideEffects
/
complexExpressionNotUsed3Runtime.kt
blob: 26ae96d08e30002cd830d5f47424ab890e59f515 [
file
]
// "Replace with 'newFun()'" "true"
@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