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