Created
May 2, 2015 10:22
-
-
Save liefersfl/243402845b99f08ff39c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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