Created
November 25, 2014 03:32
-
-
Save zaki/7200746e0ece7a5e89c8 to your computer and use it in GitHub Desktop.
Internal compiler error inducing typo in unity 5
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
// Compile error in unity 5 | |
using UnityEngine; | |
public class Test | |
{ | |
public enum TEST : byte | |
{ | |
NONE = 0, | |
TEST = 1, | |
SOME = 2. | |
MUCH = 3, | |
MORE = 4, | |
BUGS = 5, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment