Smart completion: generic functions are correctly included into the list

#KT-6375 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-12-03 14:00:33 +03:00
parent a40db1e794
commit 856be73500
24 changed files with 388 additions and 126 deletions
@@ -0,0 +1,14 @@
fun<T> emptyList(): List<T> = listOf()
fun foo(list: List<String>){}
fun foo(list: List<String>, i: Int){}
fun foo(list: List<Int>, b: Boolean){}
fun foo(list: List<Int>, c: Char){}
fun f(){
foo(empty<caret>)
}
// EXIST: { lookupString: "emptyList", typeText: "List<String>" }
// EXIST: { lookupString: "emptyList", typeText: "List<Int>" }
// NUMBER: 2