Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions proposals/0364-retroactive-conformance-warning.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ use `@retroactive` outside of the declaration of a retroactive conformance.
`@retroactive` is a new attribute, but it is purely additive; it can be accepted
by all language versions. It does mean projects building with an older Swift
will not have access to this syntax, so as a source compatible fallback,
a client can silence this warning by fully-qualifying all types in the extension.
a client can silence this warning by fully-qualifying all protocol types in the extension.
As an example, the above conformance can also be written as

```swift
extension Foundation.Date: Swift.Identifiable {
extension Date: Swift.Identifiable {
// ...
}
```
Expand Down