KT-7716 Introduce Variable's name suggestions often have "1" at the end for no real reason

#KT-7716 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-06-26 20:32:03 +03:00
parent ed267d9949
commit df5f035760
4 changed files with 25 additions and 2 deletions
@@ -0,0 +1,8 @@
class For
val For.parent: For
get() = For()
fun foo(f: For) {
<selection>f.parent</selection>
}
@@ -0,0 +1,8 @@
class For
val For.parent: For
get() = For()
fun foo(f: For) {
val parent = f.parent
}