arcgis-maps-sdk-swift-samples
arcgis-maps-sdk-swift-samples copied to clipboard
Examine ExistentialAny
-enable-upcoming-feature ExistentialAny
Examine the ExistentialAny conformance in the project and add missing any for the protocol types. Most commonly seen,
Use of protocol 'Error' as a type must be written 'any Error'; this will be an error in a future Swift language mode
- @State private var error: Error?
+ @State private var error: (any Error)?