|
C1007: Constant too big |
Top Previous Next |
Description:
A numerical constant does not fit in any supported numerical type.
Example:
x = 65536 ' error C1007: Constant too big x = -32769 ' error C1007: Constant too big
enum my_enum my_val1 = -32768, my_val2 = 32768 end enum ' error C1007: enum range is too wide
|
See Also