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:
+9
@@ -0,0 +1,9 @@
|
||||
class AAA
|
||||
|
||||
fun foo(p: (Int, String) -> Unit) { }
|
||||
|
||||
fun bar() {
|
||||
foo { a<caret>, b -> }
|
||||
}
|
||||
|
||||
// NUMBER: 0
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
class BBB
|
||||
|
||||
fun foo(p: (Int, String) -> Unit) { }
|
||||
|
||||
fun bar() {
|
||||
foo { a, b<caret> }
|
||||
}
|
||||
|
||||
// NUMBER: 0
|
||||
Reference in New Issue
Block a user