Don't exclude callable references with type parameters from completion

This commit is contained in:
Mikhail Zarechenskiy
2017-01-25 19:38:56 +03:00
parent e04d18f3de
commit 462aed35d3
5 changed files with 24 additions and 6 deletions
@@ -0,0 +1,8 @@
class Wrapper<T>(val value: T)
fun test() {
listOf<String>().map(::Wrap<caret>)
}
// EXIST: { lookupString: "Wrapper", itemText: "Wrapper", tailText: "(value: T)", attributes: "" }
// NOTHING_ELSE