Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
keepLineBreaks
/
addArgument.kt.after
blob: fc116e658a2d732ac42b1f0b7aab25e3a529f0ce [
file
] [
log
] [
blame
]
// "Replace with 'newFun(p1, p2, 0)'" "true"
interface
X
{
@Deprecated
(
""
,
ReplaceWith
(
"newFun(p1, p2, 0)"
))
fun oldFun
(
p1
:
Int
,
p2
:
Int
)
fun newFun
(
p1
:
Int
,
p2
:
Int
,
p3
:
Int
)
}
fun foo
(
x
:
X
)
{
x
.
newFun
(
1
,
2
,
0
)
}