Rename: Suggest respective parameter name for the local variable passed to function

#KT-14792 Fixed
This commit is contained in:
Alexey Sedunov
2016-11-29 15:52:20 +03:00
parent b6d4bb4921
commit 475ae0d638
6 changed files with 130 additions and 3 deletions
@@ -0,0 +1,9 @@
// SUGGESTED_NAMES: baz, paramBar, s
fun foo(paramBar: String) {
}
fun test() {
val <caret>baz = ""
foo(baz)
}