Skip to content

Instantly share code, notes, and snippets.

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