17 lines
238 B
Plaintext
Vendored
17 lines
238 B
Plaintext
Vendored
// "Replace with 'newFun(p, p)'" "true"
|
|
|
|
@Deprecated("", ReplaceWith("newFun(p, p)"))
|
|
fun oldFun(p: Int) {
|
|
newFun(p, p)
|
|
}
|
|
|
|
fun newFun(p1: Int, p2: Int){}
|
|
|
|
fun foo(c: C) {
|
|
<caret>newFun(c.bar, c.bar)
|
|
}
|
|
|
|
class C {
|
|
var bar = 0
|
|
}
|