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
+9
View File
@@ -0,0 +1,9 @@
class ResolvedCall<out D>(val candidateDescriptor: D)
fun test(myResolvedCall: ResolvedCall<String>) {
bar(my<caret>)
}
fun bar(foo: ResolvedCall<*>) {}
// EXIST: myResolvedCall
@@ -0,0 +1,9 @@
class ResolvedCall<out D>(val candidateDescriptor: D)
fun test(myResolvedCall: ResolvedCall<Any>) {
bar(my<caret>)
}
fun bar(foo: ResolvedCall<out CharSequence>) {}
// EXIST: myResolvedCall