Rename: Do not search text occurrences of local declarations
#KT-23838 Fixed
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
fun foo(x: Int) {
|
||||
val <caret>y = x + 1
|
||||
val z = y + 1
|
||||
// y
|
||||
val s = "y"
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
fun foo(x: Int) {
|
||||
val w = x + 1
|
||||
val z = w + 1
|
||||
// y
|
||||
val s = "y"
|
||||
}
|
||||
Reference in New Issue
Block a user