Created
March 8, 2017 17:13
-
-
Save DougGregor/0b0b857edc3d5407c6515efc51ce0016 to your computer and use it in GitHub Desktop.
Trivial yet fun example for requirement signatures and conformance access paths
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protocol P { } | |
protocol Q { | |
associatedtype A: P | |
} | |
protocol R: Q { | |
associatedtype A: P | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment