aboutsummaryrefslogtreecommitdiff
path: root/test/do-loop.c
blob: 2189a676dd0bfd171e0009955739f19d8c5ce718 (plain)
1
2
3
4
5
6
7
8
9
int main(void) {
	int x = 2, y = 0;
	do {
		if (x == 1)
			continue;
		++y;
	} while (x--);
	return y != 2;
}