shithub: scc

ref: 994751d39485e086ef623f202fb1b84729fd5d19
dir: /tests/cc/execute/0186-dec_ary.c/

View raw version
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;
}