KT-13780 No completion and assertion error in log

#KT-13780 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-10-07 17:52:29 +03:00
parent 09a3741eb9
commit 7b12dd498f
20 changed files with 94 additions and 24 deletions
@@ -0,0 +1,9 @@
class X<D>()
fun test() {
bar(<caret>)
}
fun bar(foo: X<*>) {}
// EXIST: { lookupString:"X", itemText:"X", tailText:"() (<root>)" }
@@ -0,0 +1,9 @@
class X<D>(d: D)
fun test() {
bar(<caret>)
}
fun bar(foo: X<*>) {}
// EXIST: { lookupString:"X", itemText:"X", tailText:"(d: D) (<root>)" }