DeprecatedSymbolUsageFix: initial implementation
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
// "Replace with 'x'" "true"
|
||||
|
||||
trait X {
|
||||
@deprecated("", ReplaceWith("x"))
|
||||
fun getX(): String
|
||||
|
||||
val x: String
|
||||
}
|
||||
|
||||
fun foo(x: X): String {
|
||||
return x.<caret>getX()
|
||||
}
|
||||
Reference in New Issue
Block a user