ref: 0abc10c55a5366e6fdad4c775e5f18b39c14eec6
dir: /tests/cc/execute/0186-dec-ary.c/
struct node {
int index;
};
struct node nodes[2];
int
main(void)
{
int d = 1, c;
d = 1;
c = nodes[--d].index++;
if (d != 0 || nodes[0].index != 1)
return 1;
d = -1;
c = nodes[++d].index--;
if (d != 0 || nodes[0].index != 0)
return 2;
return 0;
}