KT-13780 No completion and assertion error in log
#KT-13780 Fixed
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user