Skip to content

Instantly share code, notes, and snippets.

@vialyx
Last active October 8, 2018 15:23
Show Gist options
  • Save vialyx/f3f68f6f50602b9d54ceb13bef960241 to your computer and use it in GitHub Desktop.
Save vialyx/f3f68f6f50602b9d54ceb13bef960241 to your computer and use it in GitHub Desktop.
let existedUser = User()
let adminUser = User()
let superUser = existedUser
if existedUser === adminUser {
print("existedUser, adminUser both refer to same instance")
}
if existedUser === superUser {
print("existedUser, superUser both refer to same instance")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment