Skip to content

Instantly share code, notes, and snippets.

@danielctull
Last active April 20, 2016 07:01
Show Gist options
  • Save danielctull/9a3c133a89e2aee349991e7355301c84 to your computer and use it in GitHub Desktop.
Save danielctull/9a3c133a89e2aee349991e7355301c84 to your computer and use it in GitHub Desktop.
import Foundation
protocol File {}
class FileClass: File {}
let set = NSOrderedSet(array: [FileClass(), FileClass()])
let files = set.array as? [File] // Type 'File' does not conform to protocol 'AnyObject'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment