Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
implicitQualifiedThisRuntime.kt
blob: 79343c34089cbbd64bfe5b3cf4f2e2819ee1342f [
file
]
// "Replace with 'newFun(this, s)'" "true"
interface
I
{
@Deprecated
(
""
,
ReplaceWith
(
"newFun(this, s)"
))
fun oldFun
(
s
:
String
)
}
fun newFun
(
i
:
I
,
s
:
String
){}
fun I
.
foo
()
{
with
(
"a"
)
{
<caret>
oldFun
(
this
)
}
}