DeprecatedSymbolUsageFix: initial implementation
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
// "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)
|
||||
}
|
||||
Reference in New Issue
Block a user