Skip to content

Instantly share code, notes, and snippets.

@xcadaverx
Last active July 7, 2018 19:00
Show Gist options
  • Save xcadaverx/9537e28284aff9f078135cdbc3250d02 to your computer and use it in GitHub Desktop.
Save xcadaverx/9537e28284aff9f078135cdbc3250d02 to your computer and use it in GitHub Desktop.
protocol Foo {
func bar()
}
extension Foo {
func bar() {
print("Foo.bar()")
}
}
class SomeFoo: Foo {}
let someFoo = SomeFoo()
someFoo.bar() // Foo.bar()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment