Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
implicitQualifiedThisRuntime.kt
blob: c59d1af6a6fc03093269d36547301d3030731d7e [
file
] [
log
] [
blame
]
// "Replace with 'newFun(this, s)'" "true"
// WITH_RUNTIME
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
)
}
}