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: d1424c0305e9784a9152df0805d688bc
Issue Description:
Adding an async alternative to this method
func genericError<E>(completion: (String?, E?) -> Void) where E: Error { }
creates
func genericError<E>() async throws -> String where E: Error { }
which doesn’t compile because E is not used in the async method’s function signature.
E
The text was updated successfully, but these errors were encountered:
@swift-ci create
Sorry, something went wrong.
No branches or pull requests
Additional Detail from JIRA
md5: d1424c0305e9784a9152df0805d688bc
Issue Description:
Adding an async alternative to this method
creates
which doesn’t compile because
E
is not used in the async method’s function signature.The text was updated successfully, but these errors were encountered: