aboutsummaryrefslogtreecommitdiff
path: root/test/compound-assignment.c
blob: d7efcc678d4a28f9d8dc112903161e55335801b8 (plain)
1
2
3
4
void f(void) {
	int x[1] = {0}, *p = x;
	*p++ += 1;
}