Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Agarunov/ed6cf6e69347458d8de3a1bac2a54ad5 to your computer and use it in GitHub Desktop.
Save Agarunov/ed6cf6e69347458d8de3a1bac2a54ad5 to your computer and use it in GitHub Desktop.
class Department { }
protocol Employee {
// warning: 'weak' should not be applied to a property declaration in a protocol
// and will be disallowed in future versions
weak var department: Department? { get }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment