Skip to content

Instantly share code, notes, and snippets.

@zaki
Created November 25, 2014 03:32
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save zaki/7200746e0ece7a5e89c8 to your computer and use it in GitHub Desktop.
Internal compiler error inducing typo in unity 5
// 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