KT-8843 When typing in lambda parameters' names, smart completion kicks in and makes it impossible to type names

#KT-8843 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-08-20 16:12:13 +03:00
parent 9b04afc278
commit a015c44a60
6 changed files with 56 additions and 16 deletions
@@ -0,0 +1,9 @@
class AAA
fun foo(p: (Int, String) -> Unit) { }
fun bar() {
foo { a<caret>, b -> }
}
// NUMBER: 0
@@ -0,0 +1,9 @@
class BBB
fun foo(p: (Int, String) -> Unit) { }
fun bar() {
foo { a, b<caret> }
}
// NUMBER: 0