Hi everyone,
I've just updated Xcode to the latest version (15.0.1) and now my project is throwing a bunch of build errors that it never had before. The errors seem to be related to Swift 5.9 features and some new deprecations.
Here's a snippet of one of the main errors I'm getting:
1error: cannot find 'async' in scope
2 public func fetchData() async throws -> [Item] {
3 ^~~~~
4 This diagnostic occurred in the owner of a 'func fetchData()' declaration
Has anyone else encountered this issue after the update? Any tips on how to resolve it quickly would be greatly appreciated!