KT-5522 Rename refactoring on implicit lambda parameter 'it' should be allowed

#KT-5522 fixed
This commit is contained in:
Evgeny Gerashchenko
2014-07-30 21:55:48 +04:00
parent 8496c535aa
commit 670f135c75
6 changed files with 149 additions and 9 deletions
@@ -0,0 +1,3 @@
fun f() {
val f: (Int) -> Int = { <caret>it + it }
}
@@ -0,0 +1,3 @@
fun f() {
val f: (Int) -> Int = { y -> y + y }
}