Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
implicitCompanionObjectThis.kt
blob: 3a981f9509f23d219a0b7c5ea5490234dc000071 [
file
] [
log
] [
blame
]
// "Replace with 'newFun(this)'" "true"
open
class
C
{
@Deprecated
(
""
,
ReplaceWith
(
"newFun(this)"
))
fun oldFun
(){}
}
fun newFun
(
c
:
C
){}
class
X
{
companion
object
:
C
()
{
}
fun foo
()
{
<caret>
oldFun
()
}
}