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