Closed Superbelko closed 4 years ago
Example code
static const int dirs[5] = { 3, 0, -1, 2, 1 };
output:
__gshared static const int[5] dirs = 30-1;
expected:
__gshared static const int[5] dirs = [3, 0, -1, 2, 1];
It lacks array initializer braces, delimiter is missing, and even elements are missing.
Example code
output:
expected:
It lacks array initializer braces, delimiter is missing, and even elements are missing.