When initializing an array of integers on multiple lines and the first value is negative, style50 gives incorrect output
my code:
int my_array[] =
{
-1,
2,
3
};
style50 output:
int my_array[] =
{
-1,
2,
3
};
If the first integer is not negative, style50 outputs "Looks good!"