Fixed KT-5020 Smart completion should work at the initializer of a val with no explicit type
#KT-5020 Fixed
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
fun foo(p1: String, p2: Int) {
|
||||
val v = <caret>"a"
|
||||
}
|
||||
|
||||
// EXIST: p1
|
||||
// ABSENT: p2
|
||||
@@ -0,0 +1,6 @@
|
||||
class A(s: String) {
|
||||
val v = s.<caret>length()
|
||||
}
|
||||
|
||||
// EXIST: size
|
||||
// ABSENT: substring
|
||||
Reference in New Issue
Block a user