-
Notifications
You must be signed in to change notification settings - Fork 83
Open
Labels
Description
Issue description:
When declaring an array, I get this error. It will be very long and not convenient to specify standard values manually, because in my mode this array has a value of 64 cells, and this is not even the limit.
Minimal complete verifiable example (MCVE):
enum V_STRUCT
{
V_AAA[25],
V_BBB[25]
// more values...
}
new g_var[V_STRUCT] =
{
{1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}, // <- good
{1, ...} // <- error 029
// more values...
};
main()
{
printf("%i", g_var[V_AAA][3]);
printf("%i", g_var[V_BBB][3]);
}
Workspace Information:
- Compiler version: 3.10.9