You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're running Xcode 15, and create a Nimble matcher in a file that also imports Foundation, you'll get a bunch of 'Predicate' is ambiguous for type lookup in this context type build errors.
This can be fixed by disambiguating which Predicate you're using - i.e. Nimble.Predicate instead of simply Predicate.
Edit: This can also be addressed with typealias Predicate = Nimble.Predicate. Which works throughout the entire module.
If this is a large enough problem for people, we might will look into renaming the Predicate API, or providing a typealias for the API.
rolandkakonyi, pschneider, akuzminskyi, mgray88, DBerto and 11 more