-
Notifications
You must be signed in to change notification settings - Fork 309
New issue
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
[test] Use @retroactive in test conformances #371
base: release/1.1
Are you sure you want to change the base?
[test] Use @retroactive in test conformances #371
Conversation
(I expect this will fail on Swift 5.7, possibly 5.8.) |
@swift-ci test |
1 similar comment
@swift-ci test |
The swift-collections test suite includes some test protocols to validate that dictionary- and set-like types provide the API surfaces that’s expected of their kind. These are being conformed to in the test targets, triggering new warnings on retroactive conformances. Use `@retroactive` to silence such warnings.
3c9a7ba
to
f46333d
Compare
Hm; dropping this from the 1.1.1 milestone, as we do not have a shipping Swift compiler that understands |
Swift 6 is out now; if |
The compiler got smarter and now doesn't require |
Incidentally, fully qualifying the conformance (instead of |
The swift-collections test suite includes some test protocols to validate that dictionary- and set-like types provide the API surfaces that’s expected of their kind. These are being conformed to in the test targets, triggering new warnings on retroactive conformances.
Use
@retroactive
to silence such warnings.Checklist