DeprecatedSymbolUsageFix: initial implementation
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
// "Replace with 'newFun(b, a, null)'" "true"
|
||||
|
||||
@deprecated("", ReplaceWith("newFun(b, a, null)"))
|
||||
fun oldFun(a: Int, b: String) {
|
||||
}
|
||||
|
||||
fun newFun(b: String, a: Int, x: Any?){}
|
||||
|
||||
fun foo() {
|
||||
<caret>newFun("x", 1, null)
|
||||
}
|
||||
Reference in New Issue
Block a user