Skip to content

Instantly share code, notes, and snippets.

@Francescu
Last active August 29, 2015 14:12
Show Gist options
  • Save Francescu/97706ce4e22d8d9078eb to your computer and use it in GitHub Desktop.
Save Francescu/97706ce4e22d8d9078eb to your computer and use it in GitHub Desktop.
Self in property initial value
class A {
let b = "TEST"
var c = self.b //no error
}
class D {
let e = "TEST"
let f = self.e //error
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment