DeprecatedSymbolUsageFix - dealing with infix and operator calls
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
// "Replace with 'newFun(p)'" "true"
|
||||
|
||||
@deprecated("", ReplaceWith("newFun(p)"))
|
||||
fun String.oldFun(p: Int) {
|
||||
newFun(p)
|
||||
}
|
||||
|
||||
fun String.newFun(p: Int) {
|
||||
}
|
||||
|
||||
fun foo() {
|
||||
"" <caret>newFun 1
|
||||
}
|
||||
Reference in New Issue
Block a user