Integral constant is too large
A value was assigned to an integral type that is larger that the largest possible unsigned integer value.
The following sample generates CS1021:
enum F : int { a=(int)2590000000000000000000 // CS1021 } public class clx { public static void Main() { } }