DeprecatedSymbolUsageFix to keep line breaks when possible
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
// "Replace with 'newFun(p1, p2, p3)'" "true"
|
||||
|
||||
interface X {
|
||||
@deprecated("", ReplaceWith("newFun(p1, p2, p3)"))
|
||||
fun oldFun(p1: Int, p2: Int, p3: Int)
|
||||
|
||||
fun newFun(p1: Int, p2: Int, p3: Int)
|
||||
}
|
||||
|
||||
fun foo(x: X) {
|
||||
x.<caret>oldFun(1,
|
||||
2,
|
||||
3)
|
||||
}
|
||||
Reference in New Issue
Block a user