Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
keepInfixCall.kt.after
blob: 30e13b775afea9928f18caffbd101d5c201202cd [
file
]
// "Replace with 'newFun(p)'" "true"
@Deprecated
(
""
,
ReplaceWith
(
"newFun(p)"
))
fun
String
.
oldFun
(
p
:
Int
)
{
newFun
(
p
)
}
fun
String
.
newFun
(
p
:
Int
)
{
}
fun foo
()
{
""
<caret>
newFun
1
}