- allow '-' for s and S format
[cparser] / parsetest / cp_error014.c
1 int a[1][1] = { { 42 } };
2
3 int main(void)
4 {
5         return a[0][0] - 42;
6 }