Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
md5: cbe8aa5a44b2397d188ffcc680fc92cc
relates to:
Issue Description:
In the following test case, villager is not suggested, even though its generic base could be fully inferred.
villager
// RUN: %swift-ide-test --code-completion --source-filename %s --code-completion-token=COMPLETE -I %S/Inputs/Purchases.swiftinterface struct Villager {} struct AnyPublisher2 { func assign<Root>(to keyPath: ReferenceWritableKeyPath<Root, Villager>, on object: Root) { fatalError() } } class VillagersViewModel { var villager: Villager = Villager() private func fetch(apiPublisher: AnyPublisher2) { apiPublisher.assign(to: \.#^COMPLETE^#villager, on: self) } }
The text was updated successfully, but these errors were encountered:
Fixed in #38049
Sorry, something went wrong.
ahoppen
No branches or pull requests
Additional Detail from JIRA
md5: cbe8aa5a44b2397d188ffcc680fc92cc
relates to:
Issue Description:
In the following test case,
villager
is not suggested, even though its generic base could be fully inferred.The text was updated successfully, but these errors were encountered: