Skip to content

Instantly share code, notes, and snippets.

@ketzusaka
Created February 25, 2016 19:52
Show Gist options
  • Select an option

  • Save ketzusaka/fc5019109b486c411a3d to your computer and use it in GitHub Desktop.

Select an option

Save ketzusaka/fc5019109b486c411a3d to your computer and use it in GitHub Desktop.
Any to Array of Any fail
let items = [1, 2, 3] as Any
if let items = items as? [Any] { // This cast fails
print("it works") // and this is never printed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment