Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
argumentSideEffects
/
complexExpressionUsedTwice2.kt.after
blob: 4f04bcb6833af8861a78097a123acddf013c9368 [
file
]
// "Replace with 'newFun(this)'" "true"
class
C
{
@Deprecated
(
""
,
ReplaceWith
(
"newFun(this)"
))
fun oldFun
(){}
}
fun C
.
newFun
(
c
:
C
){}
fun foo
()
{
val bar
=
0
val bar1
=
getBar
()
bar1
.<
caret
>
newFun
(
bar1
)
}
fun getBar
():
C
=
C
()