Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
doNotShortenUsersExplicitThis.kt
blob: 611e313b3c5f384deeeaa67af668822d2b9a999c [
file
] [
log
] [
blame
]
// "Replace with 'newFun(p)'" "true"
class
X
{
@Deprecated
(
""
,
ReplaceWith
(
"newFun(p)"
))
fun oldFun
(
p
:
Any
)
{
newFun
(
p
)
}
fun newFun
(
p
:
Any
){}
}
fun X
.
foo
()
{
this
.<
caret
>
oldFun
(
this
.
toString
())
}