11 lines
187 B
Plaintext
Vendored
11 lines
187 B
Plaintext
Vendored
// "Replace with 'newFun(p1 + p2)'" "true"
|
|
|
|
@Deprecated("", ReplaceWith("newFun(p1 + p2)"))
|
|
fun oldFun(p1: Int, p2: Int) {}
|
|
|
|
fun newFun(n: Int) {}
|
|
|
|
fun foo() {
|
|
<caret>newFun(1 + 2)
|
|
}
|