7b12dd498f
#KT-13780 Fixed
9 lines
196 B
Kotlin
Vendored
9 lines
196 B
Kotlin
Vendored
class ResolvedCall<out D>(val candidateDescriptor: D)
|
|
|
|
fun test(myResolvedCall: ResolvedCall<Any>) {
|
|
bar(my<caret>)
|
|
}
|
|
|
|
fun bar(foo: ResolvedCall<out CharSequence>) {}
|
|
|
|
// EXIST: myResolvedCall |