Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
argumentSideEffects
/
complexExpressionNotUsed4Runtime.kt.after
blob: 7cf25e57d856dfc90270f9eee586706214ef5595 [
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
{
bar
()
return
<caret>
newFun
()
}
fun bar
():
Int
?
=
0