Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
operatorCall2.kt
blob: b66bed1e17dda6ebc867d6fa3d476653136bc0dd [
file
]
// "Replace with 'newFun(p)'" "true"
interface
I
@Deprecated
(
""
,
ReplaceWith
(
"newFun(p)"
))
fun I
.
plus
(
p
:
Int
)
{
newFun
(
p
)
}
fun I
.
newFun
(
p
:
Int
){}
fun foo
(
i
:
I
)
{
i
<caret>
+
1
}