DeprecatedSymbolUsageFix: initial implementation
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
// "Replace with 'newFun()'" "true"
|
||||
|
||||
class X {
|
||||
@deprecated("", ReplaceWith("newFun()"))
|
||||
fun oldFun() {
|
||||
newFun()
|
||||
}
|
||||
|
||||
fun newFun(){}
|
||||
}
|
||||
|
||||
fun X.foo() {
|
||||
<caret>oldFun()
|
||||
}
|
||||
Reference in New Issue
Block a user