Created
October 28, 2016 17:42
-
-
Save paulofaria/9d3fa7617711b0dcde951e51e81d5ec9 to your computer and use it in GitHub Desktop.
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 A { | |
static var a: String { get } | |
} | |
extension A { | |
static var a: String { | |
return "a" | |
} | |
} | |
print(A.a) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment