Skip to content

Instantly share code, notes, and snippets.

@gottesmm
Created May 31, 2018 23:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gottesmm/738df5a7d5ef207012091c363217ead3 to your computer and use it in GitHub Desktop.
Save gottesmm/738df5a7d5ef207012091c363217ead3 to your computer and use it in GitHub Desktop.
func foo() {
var x: (Int, Int)
x.0 = 0
print(x.0) // <--- This works
let capture = {
print(x.0) // <--- This doesn't
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment