KT-5072 Values of extension function type are not seen in completion
#KT-5072 Fixed
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
fun test(i: Int, foo: Int.() -> Char) {
|
||||
i.<caret>
|
||||
}
|
||||
|
||||
// ELEMENT: foo
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
fun test(i: Int, foo: Int.() -> Char) {
|
||||
i.foo()<caret>
|
||||
}
|
||||
|
||||
// ELEMENT: foo
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
fun test(i: Int, foo: Int.(String) -> Char) {
|
||||
i.<caret>
|
||||
}
|
||||
|
||||
// ELEMENT: foo
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
fun test(i: Int, foo: Int.(String) -> Char) {
|
||||
i.foo(<caret>)
|
||||
}
|
||||
|
||||
// ELEMENT: foo
|
||||
Reference in New Issue
Block a user