Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
implicitQualifiedThisRuntime.kt.after
blob: e5e28ba9032540511ff3a31eff7bf042f2397599 [
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>
newFun
(
this
@foo
,
this
)
}
}