Skip to content

Instantly share code, notes, and snippets.

@liefersfl
Created May 2, 2015 10:22
Show Gist options
  • Save liefersfl/243402845b99f08ff39c to your computer and use it in GitHub Desktop.
Save liefersfl/243402845b99f08ff39c to your computer and use it in GitHub Desktop.
enum TestEnum {
case e1
case e2
}
let a: Any = TestEnum.e1
let b: Any = TestEnum.e2
let q = (a == b) // <--- error here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment